|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of TestResults in com.atlassian.bamboo.build |
---|
Methods in com.atlassian.bamboo.build that return types with arguments of type TestResults | |
---|---|
java.util.List<TestResults> |
ViewBuildResultsSuccessfulTests.getResultsList()
|
Uses of TestResults in com.atlassian.bamboo.build.test |
---|
Methods in com.atlassian.bamboo.build.test that return types with arguments of type TestResults | |
---|---|
java.util.List<TestResults> |
TestCollectionResult.getFailedTestResults()
Get all the unit TestResults that have failed. |
java.util.List<TestResults> |
TestCollectionResultImpl.getFailedTestResults()
Deprecated. |
java.util.Set<TestResults> |
JunitTestResultsParser.getFailedTests()
How many failed tests did the last parsed test report contain? |
java.util.List<TestResults> |
TestCollectionResult.getSkippedTestResults()
Get all the unit TestResults that have been skipped (or inconclusive). |
java.util.List<TestResults> |
TestCollectionResultImpl.getSkippedTestResults()
Deprecated. |
java.util.Set<TestResults> |
JunitTestResultsParser.getSkippedTests()
How many skipped tests did the last parsed test report contain? |
java.util.List<TestResults> |
TestCollectionResult.getSuccessfulTestResults()
Get all the unit TestResults that have passed without error. |
java.util.List<TestResults> |
TestCollectionResultImpl.getSuccessfulTestResults()
Deprecated. |
java.util.Set<TestResults> |
JunitTestResultsParser.getSuccessfulTests()
How many successful tests did the last parsed test report contain? |
Method parameters in com.atlassian.bamboo.build.test with type arguments of type TestResults | |
---|---|
TestCollectionResultBuilder |
TestCollectionResultBuilder.addFailedTestResults(java.util.Collection<TestResults> failedTestResults)
     * Append failed test results      * @param failedTestResults to append      * @return builder      |
TestCollectionResultBuilder |
TestCollectionResultBuilder.addSkippedTestResults(java.util.Collection<TestResults> skippedTestResults)
     * Append skipped test results      * @param skippedTestResults to append      * @return builder      |
TestCollectionResultBuilder |
TestCollectionResultBuilder.addSuccessfulTestResults(java.util.Collection<TestResults> successfulTestResults)
     * Append successful test results      * @param successfulTestResults to append      * @return builder      |
Constructor parameters in com.atlassian.bamboo.build.test with type arguments of type TestResults | |
---|---|
TestCollectionResultImpl(java.util.List<TestResults> successfulTestResults,
java.util.List<TestResults> failingTestResults,
java.util.List<TestResults> skippedTestResults)
Deprecated. |
|
TestCollectionResultImpl(java.util.List<TestResults> successfulTestResults,
java.util.List<TestResults> failingTestResults,
java.util.List<TestResults> skippedTestResults)
Deprecated. |
|
TestCollectionResultImpl(java.util.List<TestResults> successfulTestResults,
java.util.List<TestResults> failingTestResults,
java.util.List<TestResults> skippedTestResults)
Deprecated. |
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 | |
---|---|
RestTestResult(TestResults testResult,
java.lang.String status)
|
Uses of TestResults in com.atlassian.bamboo.results |
---|
Methods in com.atlassian.bamboo.results that return types with arguments of type TestResults | |
---|---|
java.util.List<TestResults> |
BuildResultsImpl.getFailedTestResults()
Deprecated. |
java.util.List<TestResults> |
BuildResults.getFailedTestResults()
Deprecated. |
java.util.List<TestResults> |
BuildResultsImpl.getSuccessfulTestResults()
Deprecated. |
java.util.List<TestResults> |
BuildResults.getSuccessfulTestResults()
Deprecated. |
java.util.Map<java.lang.Long,TestResults> |
BuildResultsImpl.getSuccessfulTestResultsMap()
Deprecated. |
java.util.Map<java.lang.Long,TestResults> |
BuildResults.getSuccessfulTestResultsMap()
Deprecated. Get map of all successful test results. |
Method parameters in com.atlassian.bamboo.results with type arguments of type TestResults | |
---|---|
void |
BuildResultsImpl.setFailedTestResults(java.util.List<TestResults> myFailedTestResults)
Deprecated. |
void |
BuildResults.setFailedTestResults(java.util.List<TestResults> myFailedTestResults)
Deprecated. |
void |
BuildResultsImpl.setSuccessfulTestResults(java.util.List<TestResults> mySuccessfulTestResults)
Deprecated. |
void |
BuildResults.setSuccessfulTestResults(java.util.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 | |
---|---|
int |
TestResults.compareTo(TestResults o)
|
Uses of TestResults in com.atlassian.bamboo.resultsummary.tests |
---|
Method parameters in com.atlassian.bamboo.resultsummary.tests with type arguments of type TestResults | |
---|---|
void |
TestsManager.copyTestResultsToBuildResultsSummary(Plan plan,
BuildResultsSummary summary,
java.util.List<TestResults> oldTests)
Converts a set of test results to a list of TestClassResults and attaches them to the BRS. |
void |
TestsManagerImpl.copyTestResultsToBuildResultsSummary(Plan plan,
BuildResultsSummary summary,
java.util.List<TestResults> oldTests)
|
void |
TestsManager.repopulateTestResultsInBuildResultsSummary(Plan plan,
BuildResultsSummary summary,
java.util.List<TestResults> successfulTests)
|
void |
TestsManagerImpl.repopulateTestResultsInBuildResultsSummary(Plan plan,
BuildResultsSummary summary,
java.util.List<TestResults> successfulTests)
|
Uses of TestResults in com.atlassian.bamboo.v2.build |
---|
Methods in com.atlassian.bamboo.v2.build that return types with arguments of type TestResults | |
---|---|
java.util.Collection<TestResults> |
CurrentBuildResult.getFailedTestResults()
Returns TestResults for the tests that have failed during current build. |
java.util.Collection<TestResults> |
CurrentBuildResultImpl.getFailedTestResults()
|
java.util.Collection<TestResults> |
CurrentBuildResult.getSkippedTestResults()
Returns TestResults for the tests that were skipped (or inconclusive) during current build. |
java.util.Collection<TestResults> |
CurrentBuildResultImpl.getSkippedTestResults()
|
java.util.Collection<TestResults> |
CurrentBuildResult.getSuccessfulTestResults()
Returns TestResults for the tests that were successful during current build. |
java.util.Collection<TestResults> |
CurrentBuildResultImpl.getSuccessfulTestResults()
|
Method parameters in com.atlassian.bamboo.v2.build with type arguments of type TestResults | |
---|---|
void |
CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Append test results to the existing stored test results for this build. |
void |
CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Append test results to the existing stored test results for this build. |
void |
CurrentBuildResult.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Append test results to the existing stored test results for this build. |
void |
CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
void |
CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
void |
CurrentBuildResultImpl.appendTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
void |
CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults)
Set the test results for this build. |
void |
CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults)
Set the test results for this build. |
void |
CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults)
|
void |
CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults)
|
void |
CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Set the test results for this build. |
void |
CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Set the test results for this build. |
void |
CurrentBuildResult.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
Set the test results for this build. |
void |
CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
void |
CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
void |
CurrentBuildResultImpl.setTestResults(java.util.Set<TestResults> successfulTestResults,
java.util.Set<TestResults> failedTestResults,
java.util.Set<TestResults> skippedTestResults)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |