Package uk.co.javahelp.maven.plugin.fitnesse.junit

Examples of uk.co.javahelp.maven.plugin.fitnesse.junit.TestHelper.run()


                new PrintTestListener(), new JUnitXMLTestListener( this.resultsDir.getAbsolutePath()));
        final TestHelper helper = new TestHelper(this.workingDir, this.reportsDir.getAbsolutePath(), resultsListener);
    helper.setDebugMode(true);

    try {
      final TestSummary summary = helper.run(this.port, launches);
        getLog().info(summary.toString());
            final RunResult result = new RunResult(summary.right, summary.exceptions, summary.wrong, summary.ignores);
      return result;
    } catch (Exception e) {
      throw new MojoExecutionException("Exception running FitNesse tests", e);
View Full Code Here

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.