Package fitlibrary.batch.trinidad

Examples of fitlibrary.batch.trinidad.TestDescriptor


   */
  private void runFitnesseWiki(final String name, WikiFile wikiFile) throws FileNotFoundException {
    String wiki = wikiFile.readWikiContent();
    wiki = decoratedWiki(wiki);
    String html = this.addCssFile(DbFitWikiPage.getHtml(wiki));
    TestDescriptor test = new InMemoryTestImpl(name, html);
    TestResult testResult = testRunner.runTest(test);
    // writeTestResult(testResult, fitDir, wikiFile);

    File htmlFile = wikiFile.mkTestedDir(fitDir);
    System.err.println(testResult.getName() + " right:" + testResult.getCounts().right + " wrong:"
View Full Code Here

TOP

Related Classes of fitlibrary.batch.trinidad.TestDescriptor

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.