builder.useOnePool(8).parallelClasses(2).parallelMethods(2);
JUnitCore core = new JUnitCore();
NothingDoingTest1.methods.clear();
Class<?>[] classes = {NothingDoingTest1.class, NothingDoingTest2.class, NothingDoingTest3.class};
Result result = core.run(builder.buildComputer(), classes);
assertTrue(result.wasSuccessful());
ArrayList<String> methods = new ArrayList<String>(NothingDoingTest1.methods);
assertThat(methods.size(), is(12));
assertThat(methods.subList(9, 12), is(not(Arrays.asList("deinit", "deinit", "deinit"))));
}