public ATFDebugTestSuite() {
super(ATFDebugTestSuite.class.getName());
}
public static Test suite() {
ForkedTestSuite forked = new ForkedTestSuite(ATFDebugCDLatch
.getFactory());
// These will run on a separate thread.
TestSuite async = new TestSuite();
// These will run on the main thread.
TestSuite sync = new SyncTestSuite();
// Test List.
sync.addTestSuite(ProjectCreatorTest.class);
async.addTestSuite(BreakpointTest.class);
async.addTestSuite(SteppingTest.class);
forked.addTest(sync);
forked.addTest(async);
return forked;
}