|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FilteredTestResults
Interface that provides a summary of all test information for a buildResultSummary for the UI. Essentiall a big cache.
Method Summary | |
---|---|
java.util.List<TestCaseResult> |
getAllFailedTestList()
|
com.google.common.collect.Multimap<TestClassResult,TestCaseResult> |
getAllFailedTests()
Returns Multimap of all TestCaseResult that have failed in this build. |
com.google.common.collect.Multimap<TestClassResult,TestCaseResult> |
getExistingFailedTests()
Returns Multimap of TestCaseResult that were failing in the previous build
and are still failing |
com.google.common.collect.Multimap<TestClassResult,TestCaseResult> |
getFixedTests()
Returns Multimap of TestCaseResult that have been fixed in this build |
com.google.common.collect.Multimap<TestClassResult,TestCaseResult> |
getNewFailedTests()
Returns Multimap of TestCaseResult that have failed, but were not failing in the last build. |
Method Detail |
---|
@NotNull com.google.common.collect.Multimap<TestClassResult,TestCaseResult> getNewFailedTests()
Multimap
of TestCaseResult
that have failed, but were not failing in the last build.
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull com.google.common.collect.Multimap<TestClassResult,TestCaseResult> getExistingFailedTests()
Multimap
of TestCaseResult
that were failing in the previous build
and are still failing
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull com.google.common.collect.Multimap<TestClassResult,TestCaseResult> getFixedTests()
Multimap
of TestCaseResult
that have been fixed in this build
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull com.google.common.collect.Multimap<TestClassResult,TestCaseResult> getAllFailedTests()
Multimap
of all TestCaseResult
that have failed in this build.
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull java.util.List<TestCaseResult> getAllFailedTestList()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |