Class FilteredTestResultsAbstract
java.lang.Object
com.atlassian.bamboo.resultsummary.tests.FilteredTestResultsAbstract
- All Implemented Interfaces:
FilteredTestResults<TestClassResult>
- Direct Known Subclasses:
FilteredTestResultsImpl,FilteredTestResultsPaginableImpl
public abstract class FilteredTestResultsAbstract
extends Object
implements FilteredTestResults<TestClassResult>
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFilteredTestResultsAbstract(BuildResultsSummary resultsSummary) -
Method Summary
Modifier and TypeMethodDescription@NotNull List<TestCaseResult>@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapof allTestCaseResultthat have failed in this build.protected abstract @NotNull List<TestCaseResult>@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapofTestCaseResultthat were failing in the previous build and are still failing.protected abstract @NotNull List<TestCaseResult>protected abstract @NotNull List<TestCaseResult>@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapofTestCaseResultthat have been fixed in this build.@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapofTestCaseResultthat have failed, but were not failing in the last build.@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapofTestCaseResultthat were Quarantined in this build, whether failed, successful or skipped.@NotNull List<TestCaseResult>@NotNull Multimap<TestClassResult,TestCaseResult> ReturnsMultimapofTestCaseResultthat were Skipped in this build.
-
Field Details
-
resultsSummary
-
-
Constructor Details
-
FilteredTestResultsAbstract
-
-
Method Details
-
getBrokenTestList
-
getFailingTestList
-
getFixedTestList
-
getNewFailedTests
Description copied from interface:FilteredTestResultsReturnsMultimapofTestCaseResultthat have failed, but were not failing in the last build. Does not include Quarantined Tests- Specified by:
getNewFailedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getExistingFailedTests
Description copied from interface:FilteredTestResultsReturnsMultimapofTestCaseResultthat were failing in the previous build and are still failing. Does not include Quarantined Tests- Specified by:
getExistingFailedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getFixedTests
Description copied from interface:FilteredTestResultsReturnsMultimapofTestCaseResultthat have been fixed in this build. Does not include Quarantined Tests.- Specified by:
getFixedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getAllFailedTests
Description copied from interface:FilteredTestResultsReturnsMultimapof allTestCaseResultthat have failed in this build.- Specified by:
getAllFailedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getAllFailedTestList
- Specified by:
getAllFailedTestListin interfaceFilteredTestResults<TestClassResult>- Returns:
- All failed tests for this build as a list of testCaseResult
-
getSkippedTestList
- Specified by:
getSkippedTestListin interfaceFilteredTestResults<TestClassResult>- Returns:
- Skipped tests for this build as a list of testCaseResult
-
getQuarantinedTests
Description copied from interface:FilteredTestResultsReturnsMultimapofTestCaseResultthat were Quarantined in this build, whether failed, successful or skipped.- Specified by:
getQuarantinedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getSkippedTests
Description copied from interface:FilteredTestResultsReturnsMultimapofTestCaseResultthat were Skipped in this build.- Specified by:
getSkippedTestsin interfaceFilteredTestResults<TestClassResult>- Returns:
- Immutable
Multimap, withTestClassResultkeys andTestCaseResultas value.
-
getTestsManager
-
getTestQuarantineManager
-