Uses of Class
com.atlassian.bamboo.results.tests.TestResults
Package
Description
-
Uses of TestResults in com.atlassian.bamboo.build
-
Uses of TestResults in com.atlassian.bamboo.build.test
Modifier and TypeMethodDescriptionTestCollectionResult.getFailedTestResults()
Get all the unitTestResults
that have failed.TestCollectionResult.getSkippedTestResults()
Get all the unitTestResults
that have been skipped (or inconclusive).TestCollectionResult.getSuccessfulTestResults()
Get all the unitTestResults
that have passed without error.Modifier and TypeMethodDescriptionTestCollectionResultBuilder.addFailedTestResults
(Collection<TestResults> failedTestResults) Append failed test resultsTestCollectionResultBuilder.addSkippedTestResults
(Collection<TestResults> skippedTestResults) Append skipped test resultsTestCollectionResultBuilder.addSuccessfulTestResults
(Collection<TestResults> successfulTestResults) Append successful test results -
Uses of TestResults in com.atlassian.bamboo.build.test.junit
Modifier and TypeMethodDescriptionJunitTestResultsParser.getFailedTests()
JunitTestResultsParser.getSkippedTests()
JunitTestResultsParser.getSuccessfulTests()
-
Uses of TestResults in com.atlassian.bamboo.plugins.rest.model.build.test
-
Uses of TestResults in com.atlassian.bamboo.plugins.testresultparser.testng
Modifier and TypeMethodDescription@NotNull List<TestResults>
TestNGResultsParser.getFailedTests()
@NotNull List<TestResults>
TestNGResultsParser.getSkippedTests()
@NotNull List<TestResults>
TestNGResultsParser.getSuccessfulTests()
-
Uses of TestResults in com.atlassian.bamboo.results
Modifier and TypeMethodDescription@NotNull List<TestResults>
BuildResults.getSuccessfulTestResults()
Deprecated.@NotNull List<TestResults>
BuildResultsImpl.getSuccessfulTestResults()
Deprecated.@NotNull Map<Long,
TestResults> BuildResults.getSuccessfulTestResultsMap()
Deprecated.Get map of all successful test results.@NotNull Map<Long,
TestResults> BuildResultsImpl.getSuccessfulTestResultsMap()
Deprecated.Modifier and TypeMethodDescriptionvoid
BuildResults.setSuccessfulTestResults
(List<TestResults> mySuccessfulTestResults) Deprecated.void
BuildResultsImpl.setSuccessfulTestResults
(List<TestResults> mySuccessfulTestResults) Deprecated. -
Uses of TestResults in com.atlassian.bamboo.results.tests
-
Uses of TestResults in com.atlassian.bamboo.resultsummary.tests
Modifier and TypeMethodDescriptionstatic boolean
TestQuarantineHelper.containsAll
(Set<String> quarantinedTests, Collection<TestResults> failedTests) void
TestsManager.repopulateTestResultsInBuildResultsSummary
(@NotNull BuildResultsSummary summary, @NotNull Supplier<List<TestResults>> buildResultsSupplier) void
TestsManagerImpl.repopulateTestResultsInBuildResultsSummary
(@NotNull BuildResultsSummary summary, @NotNull Supplier<List<TestResults>> unorderedSuccessfulTestsSupplier) -
Uses of TestResults in com.atlassian.bamboo.testutils.matchers.test
Modifier and TypeMethodDescriptionTestCollectionResultMatcherBuilder.failedTestResults
(@NotNull org.hamcrest.Matcher<Iterable<TestResults>> matcher) TestCollectionResultMatcherBuilder.skippedTestResults
(@NotNull org.hamcrest.Matcher<Iterable<TestResults>> matcher) TestCollectionResultMatcherBuilder.successfulTestResults
(@NotNull org.hamcrest.Matcher<Iterable<TestResults>> matcher) -
Uses of TestResults in com.atlassian.bamboo.v2.build
Modifier and TypeMethodDescription@Nullable Collection<TestResults>
CurrentBuildResult.getFailedTestResults()
@Nullable Collection<TestResults>
CurrentBuildResultImpl.getFailedTestResults()
@Nullable Collection<TestResults>
CurrentBuildResult.getSkippedTestResults()
@Nullable Collection<TestResults>
CurrentBuildResultImpl.getSkippedTestResults()
@Nullable Collection<TestResults>
CurrentBuildResult.getSuccessfulTestResults()
@Nullable Collection<TestResults>
CurrentBuildResultImpl.getSuccessfulTestResults()
Modifier and TypeMethodDescriptionvoid
CurrentBuildResult.appendTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults, @Nullable Set<TestResults> skippedTestResults) Append test results to the existing stored test results for this build.void
CurrentBuildResultImpl.appendTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults, @Nullable Set<TestResults> skippedTestResults) void
CurrentBuildResult.setTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults) Set the test results for this build.void
CurrentBuildResult.setTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults, @Nullable Set<TestResults> skippedTestResults) Set the test results for this build.void
CurrentBuildResultImpl.setTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults) void
CurrentBuildResultImpl.setTestResults
(@Nullable Set<TestResults> successfulTestResults, @Nullable Set<TestResults> failedTestResults, @Nullable Set<TestResults> skippedTestResults)