public void configure(SuiteConfiguration suite) {
testClassLoader = createClassLoader(suite.getClasspath());
testFileFinder = createTestFileFinder(suite);
driverFinder = DriverFinderFactory.createDriverFinder(testClassLoader, logOutput);
runIdSequence = new RunIdSequence();
// thread pool configuration
actorThreadPool = Executors.newCachedThreadPool(new PrefixedThreadFactory("jumi-actor-"));
testThreadPool = Executors.newFixedThreadPool(config.getTestThreadsCountCalculated(),
new ContextClassLoaderThreadFactory(testClassLoader, new PrefixedThreadFactory("jumi-test-")));