Package de.saumya.mojo.tests

Examples of de.saumya.mojo.tests.TestResultManager


            outputfile = new File(this.project.getBuild().getDirectory()
                    .replace("${project.basedir}/", ""), "minitest.txt");
            if (outputfile.exists()){
                outputfile.delete();
            }
            resultManager = new TestResultManager(project.getName(), "minitest", testReportDirectory, summaryReport);
            super.execute();
        }
    }
View Full Code Here


              outputfile = new File(this.project.getBuild().getDirectory()
                      .replace("${project.basedir}/", ""), "cucumber.txt");
              if (outputfile.exists()){
                  outputfile.delete();
              }
              resultManager = new TestResultManager(summaryReport);
              getLog().debug("Running Cucumber tests from " + this.cucumberDirectory);
              super.execute();
          }
    }
  }
View Full Code Here

            outputfile = new File(this.project.getBuild().getDirectory()
                    .replace("${project.basedir}/", ""), "minispec.txt");
            if (outputfile.exists()){
                outputfile.delete();
            }
            resultManager = new TestResultManager(project.getName(), "minispec", testReportDirectory, summaryReport);
            super.execute();
        }
    }
View Full Code Here

            outputfile = new File(this.project.getBuild().getDirectory()
                    .replace("${project.basedir}/", ""), "runit.txt");
            if (outputfile.exists()){
                outputfile.delete();
            }
            resultManager = new TestResultManager(project.getName(), "runit", testReportDirectory, summaryReport);
            super.execute();
        }
    }
View Full Code Here

TOP

Related Classes of de.saumya.mojo.tests.TestResultManager

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.