Package org.eclipse.php.core.tests.performance

Examples of org.eclipse.php.core.tests.performance.ProjectSuite


    map.put(ProjectSuite.INCLUDE_PATH, new String[] { "library" });
    map.put(ProjectSuite.REFERENCED_FILE,
        new String[] { "library/Zend/View/Helper/Abstract.php" });
    map.put(ProjectSuite.REFERENCING_FILE,
        new String[] { "library/Zend/View/Helper/Action.php" });
    Test test = new ProjectSuite().suite(map);
    suite.addTest(test);

    map = new HashMap();
    map.put(ProjectSuite.PROJECT, PROJECT);
    map.put(ProjectSuite.URL, URL);
    map.put(ProjectSuite.TYPE, TYPE);
    map.put(ProjectSuite.PHP_VERSION, PHPVersion.PHP5_3);
    map.put(ProjectSuite.CHANGE_INCLUDE_PATH, Boolean.TRUE);
    map.put(ProjectSuite.INCLUDE_PATH, new String[] { "library" });
    test = new ProjectSuite().suite(map);
    suite.addTest(test);

    return suite;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.core.tests.performance.ProjectSuite

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.