Uses of Class
com.atlassian.bamboo.results.tests.TestResults
Packages that use TestResults
Package
Description
-
Uses of TestResults in com.atlassian.bamboo.build
Methods in com.atlassian.bamboo.build that return types with arguments of type TestResults -
Uses of TestResults in com.atlassian.bamboo.build.test
Methods in com.atlassian.bamboo.build.test that return types with arguments of type TestResultsModifier 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.Method parameters in com.atlassian.bamboo.build.test with type arguments of type TestResultsModifier 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
Methods in com.atlassian.bamboo.build.test.junit that return types with arguments of type TestResultsModifier and TypeMethodDescriptionJunitTestResultsParser.getFailedTests()
JunitTestResultsParser.getSkippedTests()
JunitTestResultsParser.getSuccessfulTests()
-
Uses of TestResults in com.atlassian.bamboo.plugins.rest.model.build.test
Constructors in com.atlassian.bamboo.plugins.rest.model.build.test with parameters of type TestResults -
Uses of TestResults in com.atlassian.bamboo.plugins.testresultparser.testng
Methods in com.atlassian.bamboo.plugins.testresultparser.testng that return types with arguments of type TestResultsModifier 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
Methods in com.atlassian.bamboo.results that return types with arguments of type TestResultsModifier 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.Method parameters in com.atlassian.bamboo.results with type arguments of type TestResultsModifier and TypeMethodDescriptionvoid
BuildResults.setSuccessfulTestResults
(List<TestResults> mySuccessfulTestResults) Deprecated.void
BuildResultsImpl.setSuccessfulTestResults
(List<TestResults> mySuccessfulTestResults) Deprecated. -
Uses of TestResults in com.atlassian.bamboo.results.tests
Methods in com.atlassian.bamboo.results.tests with parameters of type TestResults -
Uses of TestResults in com.atlassian.bamboo.resultsummary.tests
Method parameters in com.atlassian.bamboo.resultsummary.tests with type arguments of type TestResultsModifier 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
Method parameters in com.atlassian.bamboo.testutils.matchers.test with type arguments of type TestResultsModifier 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
Methods in com.atlassian.bamboo.v2.build that return types with arguments of type TestResultsModifier 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()
Method parameters in com.atlassian.bamboo.v2.build with type arguments of type TestResultsModifier 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)