Uses of Class
com.atlassian.bamboo.results.tests.TestResults

Packages that use TestResults
com.atlassian.bamboo.build   
com.atlassian.bamboo.build.test   
com.atlassian.bamboo.build.test.junit   
com.atlassian.bamboo.plugins.testresultparser.testng   
com.atlassian.bamboo.results   
com.atlassian.bamboo.results.tests   
com.atlassian.bamboo.resultsummary.tests   
com.atlassian.bamboo.v2.build   
 

Uses of TestResults in com.atlassian.bamboo.build
 

Methods in com.atlassian.bamboo.build that return types with arguments of type TestResults
 java.util.List<TestResults> ViewBuildResultsSuccessfulTests.getResultsList()
           
 

Uses of TestResults in com.atlassian.bamboo.build.test
 

Methods in com.atlassian.bamboo.build.test that return types with arguments of type TestResults
 java.util.List<TestResults> TestCollectionResult.getFailedTestResults()
          Get all the unit TestResults that have failed.
 java.util.List<TestResults> TestCollectionResult.getSkippedTestResults()
          Get all the unit TestResults that have been skipped (or inconclusive).
 java.util.List<TestResults> TestCollectionResult.getSuccessfulTestResults()
          Get all the unit TestResults that have passed without error.
 

Method parameters in com.atlassian.bamboo.build.test with type arguments of type TestResults
 TestCollectionResultBuilder TestCollectionResultBuilder.addFailedTestResults(java.util.Collection<TestResults> failedTestResults)
               * Append failed test results      * @param failedTestResults to append      * @return builder     
 TestCollectionResultBuilder TestCollectionResultBuilder.addSkippedTestResults(java.util.Collection<TestResults> skippedTestResults)
               * Append skipped test results      * @param skippedTestResults to append      * @return builder     
 TestCollectionResultBuilder TestCollectionResultBuilder.addSuccessfulTestResults(java.util.Collection<TestResults> successfulTestResults)
               * Append successful test results      * @param successfulTestResults to append      * @return builder     
 

Uses of TestResults in com.atlassian.bamboo.build.test.junit
 

Methods in com.atlassian.bamboo.build.test.junit that return types with arguments of type TestResults
 java.util.Set<TestResults> JunitTestResultsParser.getFailedTests()
           
 java.util.Set<TestResults> JunitTestResultsParser.getSkippedTests()
           
 java.util.Set<TestResults> JunitTestResultsParser.getSuccessfulTests()
           
 

Uses of TestResults in com.atlassian.bamboo.plugins.testresultparser.testng
 

Methods in com.atlassian.bamboo.plugins.testresultparser.testng that return types with arguments of type TestResults
 java.util.List<TestResults> TestNGResultsParser.getFailedTests()
           
 java.util.List<TestResults> TestNGResultsParser.getSkippedTests()
           
 java.util.List<TestResults> TestNGResultsParser.getSuccessfulTests()
           
 

Uses of TestResults in com.atlassian.bamboo.results
 

Methods in com.atlassian.bamboo.results that return types with arguments of type TestResults
 java.util.List<TestResults> BuildResultsImpl.getFailedTestResults()
          Deprecated.  
 java.util.List<TestResults> BuildResults.getFailedTestResults()
          Deprecated. 
 java.util.List<TestResults> BuildResultsImpl.getSuccessfulTestResults()
          Deprecated.  
 java.util.List<TestResults> BuildResults.getSuccessfulTestResults()
          Deprecated.  
 java.util.Map<java.lang.Long,TestResults> BuildResultsImpl.getSuccessfulTestResultsMap()
          Deprecated.  
 java.util.Map<java.lang.Long,TestResults> BuildResults.getSuccessfulTestResultsMap()
          Deprecated. Get map of all successful test results.
 

Method parameters in com.atlassian.bamboo.results with type arguments of type TestResults
 void BuildResultsImpl.setFailedTestResults(java.util.List<TestResults> myFailedTestResults)
          Deprecated. 
 void BuildResults.setFailedTestResults(java.util.List<TestResults> myFailedTestResults)
          Deprecated. 
 void BuildResultsImpl.setSuccessfulTestResults(java.util.List<TestResults> mySuccessfulTestResults)
          Deprecated.  
 void BuildResults.setSuccessfulTestResults(java.util.List<TestResults> mySuccessfulTestResults)
          Deprecated.  
 

Uses of TestResults in com.atlassian.bamboo.results.tests
 

Methods in com.atlassian.bamboo.results.tests with parameters of type TestResults
 int TestResults.compareTo(TestResults o)
           
 

Uses of TestResults in com.atlassian.bamboo.resultsummary.tests
 

Method parameters in com.atlassian.bamboo.resultsummary.tests with type arguments of type TestResults
 void TestsManager.copyTestResultsToBuildResultsSummary(Plan plan, BuildResultsSummary summary, java.util.List<TestResults> oldTests)
          Converts a set of test results to a list of TestClassResults and attaches them to the BRS.
 void TestsManagerImpl.copyTestResultsToBuildResultsSummary(Plan plan, BuildResultsSummary summary, java.util.List<TestResults> oldTests)
           
 void TestsManager.repopulateTestResultsInBuildResultsSummary(Plan plan, BuildResultsSummary summary, java.util.List<TestResults> successfulTests)
           
 void TestsManagerImpl.repopulateTestResultsInBuildResultsSummary(Plan plan, BuildResultsSummary summary, java.util.List<TestResults> successfulTests)
           
 

Uses of TestResults in com.atlassian.bamboo.v2.build
 

Methods in com.atlassian.bamboo.v2.build that return types with arguments of type TestResults
 java.util.Collection<TestResults> CurrentBuildResult.getFailedTestResults()
          Returns TestResults for the tests that have failed during current build.
 java.util.Collection<TestResults> CurrentBuildResultImpl.getFailedTestResults()
           
 java.util.Collection<TestResults> CurrentBuildResult.getSkippedTestResults()
          Returns TestResults for the tests that were skipped (or inconclusive) during current build.
 java.util.Collection<TestResults> CurrentBuildResultImpl.getSkippedTestResults()
           
 java.util.Collection<TestResults> CurrentBuildResult.getSuccessfulTestResults()
          Returns TestResults for the tests that were successful during current build.
 java.util.Collection<TestResults> CurrentBuildResultImpl.getSuccessfulTestResults()
           
 

Method parameters in com.atlassian.bamboo.v2.build with type arguments of type TestResults
 void CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Append test results to the existing stored test results for this build.
 void CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Append test results to the existing stored test results for this build.
 void CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Append test results to the existing stored test results for this build.
 void CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 void CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 void CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 void CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults)
          Set the test results for this build.
 void CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults)
          Set the test results for this build.
 void CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults)
           
 void CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults)
           
 void CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Set the test results for this build.
 void CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Set the test results for this build.
 void CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
          Set the test results for this build.
 void CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 void CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 void CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults, java.util.Set<TestResults> failedTestResults, java.util.Set<TestResults> skippedTestResults)
           
 



Copyright © 2013 Atlassian Software Systems Pty Ltd. All Rights Reserved.