Uses of Class
hudson.tasks.test.TestResult

Packages that use TestResult
hudson.tasks.junit Model objects that represent JUnit test reports. 
hudson.tasks.test Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). 
 

Uses of TestResult in hudson.tasks.junit
 

Subclasses of TestResult in hudson.tasks.junit
 class CaseResult
          One test result.
 class ClassResult
          Cumulative test result of a test class.
 class PackageResult
          Cumulative test result for a package.
 class TestResult
          Root of all the test results for one build.
 

Methods in hudson.tasks.junit that return TestResult
 TestResult CaseResult.findCorrespondingResult(String id)
          Case results have no children
 TestResult TestResult.findCorrespondingResult(String id)
           
 TestResult ClassResult.findCorrespondingResult(String id)
           
 TestResult PackageResult.findCorrespondingResult(String id)
           
 

Methods in hudson.tasks.junit that return types with arguments of type TestResult
 Collection<? extends TestResult> CaseResult.getFailedTests()
          Gets the "children" of this test result that failed
 List<TestResult> History.getList()
           
 List<TestResult> History.getList(int start, int end)
           
 Collection<? extends TestResult> CaseResult.getPassedTests()
          Gets the "children" of this test result that passed
 Collection<? extends TestResult> TestResult.getPassedTests()
          Gets the "children" of this test result that passed
 Collection<? extends TestResult> PackageResult.getPassedTests()
          Gets the "children" of this test result that passed
 Collection<? extends TestResult> CaseResult.getSkippedTests()
          Gets the "children" of this test result that were skipped
 Collection<? extends TestResult> TestResult.getSkippedTests()
          Gets the "children" of this test result that were skipped
 Collection<? extends TestResult> PackageResult.getSkippedTests()
          Gets the "children" of this test result that were skipped
 

Uses of TestResult in hudson.tasks.test
 

Subclasses of TestResult in hudson.tasks.test
 class MetaTabulatedResult
          The purpose of this class is to provide a good place for the jelly to bind to.
 class SimpleCaseResult
          The simplest possible case result, with no language ties.
 class TabulatedResult
          Cumulated result of multiple tests.
 

Methods in hudson.tasks.test that return TestResult
 TestResult SimpleCaseResult.findCorrespondingResult(String id)
           
abstract  TestResult TestObject.findCorrespondingResult(String id)
          Find the test result corresponding to the one identified by id> withint this test result.
 TestResult AbstractTestResultAction.findCorrespondingResult(String id)
           
 TestResult AbstractTestResultAction.findPreviousCorresponding(TestResult test)
           
 TestResult TestResult.getPreviousResult()
          Gets the counter part of this TestResult in the previous run.
abstract  TestResult TestObject.getPreviousResult()
          Gets the counterpart of this TestResult in the previous run.
 TestResult TestResult.getResultInBuild(AbstractBuild<?,?> build)
          Gets the counter part of this TestResult in the specified run.
abstract  TestResult TestObject.getResultInBuild(AbstractBuild<?,?> build)
          Gets the counterpart of this TestResult in the specified run.
 TestResult TestObject.getTopLevelTestResult()
          Returns the top level test result data.
protected abstract  TestResult DefaultTestResultParserImpl.parse(List<File> reportFiles, Launcher launcher, TaskListener listener)
          This method is executed on the slave that has the report files to parse test reports and builds TestResult.
abstract  TestResult TestResultParser.parse(String testResultLocations, AbstractBuild build, Launcher launcher, TaskListener listener)
          Parses the specified set of files and builds a TestResult object that represents them.
 TestResult DefaultTestResultParserImpl.parse(String testResultLocations, AbstractBuild build, Launcher launcher, TaskListener listener)
           
 

Methods in hudson.tasks.test that return types with arguments of type TestResult
abstract  Collection<? extends TestResult> TabulatedResult.getChildren()
          Gets the child test result objects.
abstract  Collection<? extends TestResult> MetaTabulatedResult.getFailedTests()
          All failed tests.
 Collection<? extends TestResult> TestResult.getFailedTests()
          Gets the "children" of this test result that failed
 Collection<? extends TestResult> SimpleCaseResult.getFailedTests()
          Gets the "children" of this test result that failed
 Collection<? extends TestResult> TestResult.getPassedTests()
          Gets the "children" of this test result that passed
 Collection<? extends TestResult> SimpleCaseResult.getPassedTests()
          Gets the "children" of this test result that passed
 Collection<? extends TestResult> TestResult.getSkippedTests()
          Gets the "children" of this test result that were skipped
 Collection<? extends TestResult> SimpleCaseResult.getSkippedTests()
          Gets the "children" of this test result that were skipped
 

Methods in hudson.tasks.test with parameters of type TestResult
 TestResult AbstractTestResultAction.findPreviousCorresponding(TestResult test)
           
 String MatrixTestResult.getTestResultPath(TestResult it)
           
 String AbstractTestResultAction.getTestResultPath(TestResult it)
          Returns a full path down to a test result
 



Copyright © 2004-2013. All Rights Reserved.