Package hudson.tasks.junit.TestResultAction

Examples of hudson.tasks.junit.TestResultAction.Data


            // TODO: Move into JUnitParser [BUG 3123310]
      List<Data> data = new ArrayList<Data>();
      if (testDataPublishers != null) {
        for (TestDataPublisher tdp : testDataPublishers) {
          Data d = tdp.getTestData(build, launcher, listener, result);
          if (d != null) {
            data.add(d);
          }
        }
      }
View Full Code Here


    }
   
    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);
        }
      }
    }
View Full Code Here

            // TODO: Move into JUnitParser [BUG 3123310]
      List<Data> data = new ArrayList<Data>();
      if (testDataPublishers != null) {
        for (TestDataPublisher tdp : testDataPublishers) {
          Data d = tdp.getTestData(build, launcher, listener, result);
          if (d != null) {
            data.add(d);
          }
        }
      }
View Full Code Here

TOP

Related Classes of hudson.tasks.junit.TestResultAction.Data

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.