com.atlassian.bamboo.results.tests
Interface TestResultsSummary

All Known Implementing Classes:
TestResultsSummaryImpl

public interface TestResultsSummary

Interface that represents te


Method Summary
 java.util.Map getAllTests()
           
 java.util.Map getExistingFailedTests()
          Returns Map of TestClassResult of tests that were failing in the previous build
 long getExistingFailedTestsCaseCount()
           
 long getExistingFailedTestsSuiteCount()
           
 java.util.Map getFixedTests()
          Returns Map of TestClassResult of tests that have been fixed in this build.
 long getFixedTestsCaseCount()
           
 long getFixedTestsSuiteCount()
           
 java.util.Map getNewFailedTests()
          Returns Map of TestClassResult of tests that have failed, but were not failing in the last build.
 long getNewFailedTestsCaseCount()
           
 long getNewFailedTestsSuiteCount()
           
 java.util.Map getSuccessfulTests()
           
 java.util.List getUngroupedExistingFailedTests()
           
 java.util.List getUngroupedNewFailedTests()
           
 

Method Detail

getNewFailedTests

java.util.Map getNewFailedTests()
Returns Map of TestClassResult of tests that have failed, but were not failing in the last build.

Returns:
Immutable Map, with String keys of the ClassName and TestClassResult as value. Empty Map if none exists.

getExistingFailedTests

java.util.Map getExistingFailedTests()
Returns Map of TestClassResult of tests that were failing in the previous build

Returns:
Immutable Map, with String keys of the ClassName and TestClassResult as value. Empty Map if none exists.

getFixedTests

java.util.Map getFixedTests()
Returns Map of TestClassResult of tests that have been fixed in this build.

Returns:
Immutable Map, with String keys of the ClassName and TestClassResult as value. Empty Map if none exists.

getAllTests

java.util.Map getAllTests()

getSuccessfulTests

java.util.Map getSuccessfulTests()

getNewFailedTestsSuiteCount

long getNewFailedTestsSuiteCount()

getExistingFailedTestsSuiteCount

long getExistingFailedTestsSuiteCount()

getFixedTestsSuiteCount

long getFixedTestsSuiteCount()

getNewFailedTestsCaseCount

long getNewFailedTestsCaseCount()

getExistingFailedTestsCaseCount

long getExistingFailedTestsCaseCount()

getFixedTestsCaseCount

long getFixedTestsCaseCount()

getUngroupedExistingFailedTests

java.util.List getUngroupedExistingFailedTests()

getUngroupedNewFailedTests

java.util.List getUngroupedNewFailedTests()


Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.