Package test.core

Examples of test.core.Result


   * @param testSuiteProperties
   */
  public static void runTest(String testName, Properties testSuiteProperties) {
    String testDir = Util.TEST_ROOT + "/" + testName;
    Properties testProperties = Util.getProperties(new File(testDir, "Test.properties"));
    Result expected = getExpectedResult(testProperties);

    File tmpDir = setupTemporaryDirectory(testDir);

    // Write the dot graph specification
    String stdErr = dumpGraphSpec(testSuiteProperties, testProperties, tmpDir, testDir, expected);
View Full Code Here

TOP

Related Classes of test.core.Result

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.