Package org.eclipse.atf.debug.testplugin

Examples of org.eclipse.atf.debug.testplugin.ForkedTestSuite$DefaultLatchFactory


  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;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.atf.debug.testplugin.ForkedTestSuite$DefaultLatchFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.