JUnitCore.runMainAndExit(new RealSystem(), classNames);
}
private static String[] loadClassNames()
{
final FileSystem fs = new FileSystem();
if(!fs.exists(".testClasses"))
throw new RuntimeException(".testClasses file is missing");
final String classesContent = fs.readTextFile(".testClasses");
return classesContent.split("(\r\n|\n)");
}