| 23 | /** Utility class for concurrency tests. */ |
| 24 | public class ParallelTestRunner { |
| 25 | public interface Worker { |
| 26 | void run(); |
| 27 | } |
| 28 | |
| 29 | private static class WorkerThread extends Thread { // Thread safety reviewed |
| 30 | private final Worker _worker; |
no outgoing calls
no test coverage detected