public class ChainFilteredTestResults extends Object implements FilteredTestResults<TestClassResultDescriptor>
Modifier and Type | Method and Description |
---|---|
List<TestCaseResult> |
getAllFailedTestList() |
com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> |
getAllFailedTests()
Returns
Multimap of all TestCaseResult that have failed in this build. |
com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> |
getExistingFailedTests()
Returns
Multimap of TestCaseResult that were failing in the previous build
and are still failing. |
com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> |
getFixedTests()
Returns
Multimap of TestCaseResult that have been fixed in this build. |
com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> |
getNewFailedTests()
Returns
Multimap of TestCaseResult that have failed, but were not failing in the last build. |
com.google.common.collect.Multimap<TestClassResultDescriptor,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<TestClassResultDescriptor,TestCaseResult> |
getSkippedTests()
Returns
Multimap of TestCaseResult that were Skipped in this build. |
TestQuarantineManager |
getTestQuarantineManager()
Deprecated.
since 5.12 wire the bean through Spring instead
|
TestsManager |
getTestsManager()
Deprecated.
since 5.12 wire the bean through Spring instead
|
static ChainFilteredTestResults |
newInstance(TestsManager testsManager,
TestQuarantineManager testQuarantineManager,
ChainResultsSummary chainResultsSummary,
int pageNumber,
int pageSize)
Creates a new instance of
ChainFilteredTestResults . |
@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getNewFailedTests()
FilteredTestResults
Multimap
of TestCaseResult
that have failed, but were not failing in the last build.
Does not include Quarantined TestsgetNewFailedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getFixedTests()
FilteredTestResults
Multimap
of TestCaseResult
that have been fixed in this build. Does not include Quarantined Tests.getFixedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getExistingFailedTests()
FilteredTestResults
Multimap
of TestCaseResult
that were failing in the previous build
and are still failing. Does not include Quarantined TestsgetExistingFailedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getAllFailedTests()
FilteredTestResults
Multimap
of all TestCaseResult
that have failed in this build.getAllFailedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getQuarantinedTests()
FilteredTestResults
Multimap
of TestCaseResult
that were Quarantined in this build, whether failed,
successful or skipped.getQuarantinedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> getSkippedTests()
FilteredTestResults
Multimap
of TestCaseResult
that were Skipped in this build.getSkippedTests
in interface FilteredTestResults<TestClassResultDescriptor>
Multimap
, with TestClassResult
keys and TestCaseResult
as value.@NotNull public List<TestCaseResult> getAllFailedTestList()
getAllFailedTestList
in interface FilteredTestResults<TestClassResultDescriptor>
@NotNull public List<TestCaseResult> getSkippedTestList()
getSkippedTestList
in interface FilteredTestResults<TestClassResultDescriptor>
@Deprecated public TestsManager getTestsManager()
@Deprecated public TestQuarantineManager getTestQuarantineManager()
@Nullable public static ChainFilteredTestResults newInstance(TestsManager testsManager, TestQuarantineManager testQuarantineManager, ChainResultsSummary chainResultsSummary, int pageNumber, int pageSize)
ChainFilteredTestResults
. Returns null if the result is not finalised.Copyright © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.