public interface FilteredTestResults<T extends TestClassResultDescriptor>
| Modifier and Type | Method and Description |
|---|---|
List<TestCaseResult> |
getAllFailedTestList() |
com.google.common.collect.Multimap<T,TestCaseResult> |
getAllFailedTests()
Returns
Multimap of all TestCaseResult that have failed in this build. |
com.google.common.collect.Multimap<T,TestCaseResult> |
getExistingFailedTests()
Returns
Multimap of TestCaseResult that were failing in the previous build
and are still failing. |
com.google.common.collect.Multimap<T,TestCaseResult> |
getFixedTests()
Returns
Multimap of TestCaseResult that have been fixed in this build. |
com.google.common.collect.Multimap<T,TestCaseResult> |
getNewFailedTests()
Returns
Multimap of TestCaseResult that have failed, but were not failing in the last build. |
com.google.common.collect.Multimap<T,TestCaseResult> |
getQuarantinedTests()
Returns
Multimap of TestCaseResult that were Quarantined in this build, whether failed,
successful or skipped. |
List<TestCaseResult> |
getSkippedTestList() |
com.google.common.collect.Multimap<T,TestCaseResult> |
getSkippedTests()
Returns
Multimap of TestCaseResult that were Skipped in this build. |
@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getNewFailedTests()
Multimap of TestCaseResult that have failed, but were not failing in the last build.
Does not include Quarantined TestsMultimap, with TestClassResult keys and TestCaseResult as value.@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getExistingFailedTests()
Multimap of TestCaseResult that were failing in the previous build
and are still failing. Does not include Quarantined TestsMultimap, with TestClassResult keys and TestCaseResult as value.@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getFixedTests()
Multimap of TestCaseResult that have been fixed in this build. Does not include Quarantined Tests.Multimap, with TestClassResult keys and TestCaseResult as value.@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getAllFailedTests()
Multimap of all TestCaseResult that have failed in this build.Multimap, with TestClassResult keys and TestCaseResult as value.@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getQuarantinedTests()
Multimap of TestCaseResult that were Quarantined in this build, whether failed,
successful or skipped.Multimap, with TestClassResult keys and TestCaseResult as value.@NotNull com.google.common.collect.Multimap<T,TestCaseResult> getSkippedTests()
Multimap of TestCaseResult that were Skipped in this build.Multimap, with TestClassResult keys and TestCaseResult as value.@NotNull List<TestCaseResult> getAllFailedTestList()
@NotNull List<TestCaseResult> getSkippedTestList()
Copyright © 2019 Atlassian Software Systems Pty Ltd. All rights reserved.