final Iterator iter = Arrays.asList( TEST_CLASSES ).iterator();
while ( iter.hasNext() )
{
final Class theClass = (Class)iter.next();
testClass( theClass );
}
System.out.println( "*** testing " + theClass.getName() + " ***");
// use 'ActiveTestSuite' to thread the tests
final ActiveTestSuite suite = new ActiveTestSuite( theClass );
junit.textui.TestRunner.run( suite );