com.atlassian.bamboo.build.test
Interface TestCollectionResult

All Known Implementing Classes:
TestCollectionResultImpl

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
 java.util.List<TestResults> getFailedTestResults()
          Get all the unit TestResults that have failed.
 java.util.List<TestResults> getSkippedTestResults()
          Get all the unit TestResults that have been skipped (or inconclusive).
 java.util.List<TestResults> getSuccessfulTestResults()
          Get all the unit TestResults that have passed without error.
 

Method Detail

getSuccessfulTestResults

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

Returns:
The collection of successful TestResults

getFailedTestResults

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

Returns:
The collection of failed TestResults

getSkippedTestResults

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

Returns:
The collection of failed TestResults
Since:
3.2


Copyright © 2012 Atlassian. All Rights Reserved.