final RunListener jUnit4TestSetReporter = new JUnit4RunListener( reporter );
final CountDownLatch countDownLatch = new CountDownLatch( 1 );
final Description testSomething = Description.createTestDescription( STest1.class, "testSomething" );
final Description testSomething2 = Description.createTestDescription( STest2.class, "testSomething2" );
jUnit4TestSetReporter.testStarted( testSomething );
new Thread( new Runnable()
{
public void run()
{