// pieces of code that just seem to linger on in here ;)
private void closeRunNotifier( org.junit.runner.notification.RunListener main,
List<org.junit.runner.notification.RunListener> others )
{
RunNotifier fNotifier = new RunNotifier();
fNotifier.removeListener( main );
for ( org.junit.runner.notification.RunListener listener : others )
{
fNotifier.removeListener( listener );
}
}