com.atlassian.bamboo.build.test
Interface TestCollectionResult


@PublicApi
public interface TestCollectionResult

Holds the successful and failed TestResults after calling TestReportCollector.collect(File) Use TestCollectionResultBuilder to create instances of this interface

Since:
3.1

Method Summary
 List<TestResults> getFailedTestResults()
          Get all the unit TestResults that have failed.
 List<TestResults> getSkippedTestResults()
          Get all the unit TestResults that have been skipped (or inconclusive).
 List<TestResults> getSuccessfulTestResults()
          Get all the unit TestResults that have passed without error.
 

Method Detail

getSuccessfulTestResults

List<TestResults> getSuccessfulTestResults()
Get all the unit TestResults that have passed without error.

Returns:
The collection of successful TestResults

getFailedTestResults

List<TestResults> getFailedTestResults()
Get all the unit TestResults that have failed.

Returns:
The collection of failed TestResults

getSkippedTestResults

List<TestResults> getSkippedTestResults()
Get all the unit TestResults that have been skipped (or inconclusive).

Returns:
The collection of failed TestResults
Since:
3.2


Copyright © 2015 Atlassian Software Systems Pty Ltd. All rights reserved.