Package hudson.maven.reporters

Examples of hudson.maven.reporters.SurefireReport


  }

  public boolean perform(AbstractBuild<?,?> build, Launcher launcher,
      BuildListener listener) throws InterruptedException, IOException {

    SurefireReport report = build.getAction(SurefireReport.class);
    if (report == null) {
      return true;
    }
   
    List<Data> data = new ArrayList<Data>();
    if (testDataPublishers != null) {
      for (TestDataPublisher tdp : testDataPublishers) {
        Data d = tdp.getTestData(build, launcher, listener, report.getResult());
        if (d != null) {
          data.add(d);
        }
      }
    }
   
    report.setData(data);

    return true;
  }
View Full Code Here

TOP

Related Classes of hudson.maven.reporters.SurefireReport

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.