Interface FilteredTestResults<T extends TestClassResultDescriptor>
-
- All Known Implementing Classes:
ChainFilteredTestResults
,FilteredTestResultsAbstract
,FilteredTestResultsImpl
,FilteredTestResultsPaginableImpl
public interface FilteredTestResults<T extends TestClassResultDescriptor>
Interface that provides a summary of all test information for a buildResultSummary for the UI. Essentially a big cache.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<TestCaseResult>
getAllFailedTestList()
@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getAllFailedTests()
ReturnsMultimap
of allTestCaseResult
that have failed in this build.@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getExistingFailedTests()
ReturnsMultimap
ofTestCaseResult
that were failing in the previous build and are still failing.@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getFixedTests()
ReturnsMultimap
ofTestCaseResult
that have been fixed in this build.@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getNewFailedTests()
ReturnsMultimap
ofTestCaseResult
that have failed, but were not failing in the last build.@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getQuarantinedTests()
ReturnsMultimap
ofTestCaseResult
that were Quarantined in this build, whether failed, successful or skipped.@NotNull List<TestCaseResult>
getSkippedTestList()
@NotNull com.google.common.collect.Multimap<T,TestCaseResult>
getSkippedTests()
ReturnsMultimap
ofTestCaseResult
that were Skipped in this build.
-
-
-
Method Detail
-
getNewFailedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getNewFailedTests()
ReturnsMultimap
ofTestCaseResult
that have failed, but were not failing in the last build. Does not include Quarantined Tests- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getExistingFailedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getExistingFailedTests()
ReturnsMultimap
ofTestCaseResult
that were failing in the previous build and are still failing. Does not include Quarantined Tests- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getFixedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getFixedTests()
ReturnsMultimap
ofTestCaseResult
that have been fixed in this build. Does not include Quarantined Tests.- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getAllFailedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getAllFailedTests()
ReturnsMultimap
of allTestCaseResult
that have failed in this build.- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getQuarantinedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getQuarantinedTests()
ReturnsMultimap
ofTestCaseResult
that were Quarantined in this build, whether failed, successful or skipped.- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getSkippedTests
@NotNull @NotNull com.google.common.collect.Multimap<T,TestCaseResult> getSkippedTests()
ReturnsMultimap
ofTestCaseResult
that were Skipped in this build.- Returns:
- Immutable
Multimap
, withTestClassResult
keys andTestCaseResult
as value.
-
getAllFailedTestList
@NotNull @NotNull List<TestCaseResult> getAllFailedTestList()
- Returns:
- All failed tests for this build as a list of testCaseResult
-
getSkippedTestList
@NotNull @NotNull List<TestCaseResult> getSkippedTestList()
- Returns:
- Skipped tests for this build as a list of testCaseResult
-
-