Package performanceTests

Source Code of performanceTests.PTSuite

package performanceTests;

import performanceTests.modules.CreatingModule;
import performanceTests.openGraph.TestSuite1;
import junit.framework.Test;
import junit.framework.TestSuite;

public class PTSuite {
  public static Test suite() {
    TestSuite suite = new TestSuite("Performance tracking suites");
    //$JUnit-BEGIN$
    // open graph tests
    suite.addTest(new TestSuite1("openGraph_pcg_attr1_graphml"));
    suite.addTest(new TestSuite1("openGraph_big_gml"));
    // creating of modules tests
    suite.addTest(new CreatingModule("creatingAllModules"));
    suite.addTest(new CreatingModule("creatingSimpleTabCloser"));
    suite.addTest(new CreatingModule("creatingLookAndFeelChanger"));
    suite.addTest(new CreatingModule("creatingGraphSettings"));
    suite.addTest(new CreatingModule("StyleMetalApplying"));
    suite.addTest(new CreatingModule("StyleSubstanceApplying"));
   
    //$JUnit-END$
    return(suite);
  }
}
TOP

Related Classes of performanceTests.PTSuite

TOP
Copyright © 2018 www.massapi.com. 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.