| Package | Description |
|---|---|
| com.atlassian.bamboo.resultsummary.tests |
| Modifier and Type | Method and Description |
|---|---|
TestCaseResult |
TestCaseResultDao.findById(long id)
Find a specific testCaseResult by id
|
TestCaseResult |
TestCaseSummary.getLastTestCaseResult() |
TestCaseResult |
TestCaseResultError.getTestCaseResult() |
TestCaseResult |
TestCaseResultStatisticsProvider.getTestCaseResult() |
TestCaseResult |
TestsManager.getTestCaseResult(TestCase testCase,
long buildNumber)
Deprecated.
since 3.3 use
TestsManager.getTestCaseResults(TestCase, long) |
TestCaseResult |
TestCaseResultDao.getTestCaseResult(TestCase testCase,
long buildNumber)
Deprecated.
since 3.3 use
TestCaseResultDao.getTestCaseResults(TestCase, long) |
TestCaseResult |
TestsManager.getTestCaseResultById(long testCaseResultId)
Find a specific testCaseResult by id
|
| Modifier and Type | Method and Description |
|---|---|
List<TestCaseResult> |
FilteredTestResults.getAllFailedTestList() |
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getAllFailedTests()
Returns
Multimap of all TestCaseResult that have failed in this build. |
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getExistingFailedTests()
Returns
Multimap of TestCaseResult that were failing in the previous build
and are still failing. |
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getFixedTests()
Returns
Multimap of TestCaseResult that have been fixed in this build. |
List<Pair<TestCaseResult,Integer>> |
TestsManager.getLastNFailingResults(TestCase testCase,
int number)
Retrieve the last n failing testResults for this given test case, latest first.
|
List<Pair<TestCaseResult,Integer>> |
TestsManager.getLastNFailingResults(TestCase testCase,
List<BuildResultsSummary> buildResults,
int number)
Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided
build results.
|
List<Pair<TestCaseResult,Integer>> |
TestCaseResultDao.getLastNFailingResultsForTestCase(TestCase testCase,
int number)
Retrieve the last n failing testResults for this given test case, latest first.
|
List<Pair<TestCaseResult,Integer>> |
TestCaseResultDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase,
List<BuildResultsSummary> buildResults,
int number)
Retrieve the last n failing testResults for this given test case, but only those that occurred within the provided
build results.
|
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getNewFailedTests()
Returns
Multimap of TestCaseResult that have failed, but were not failing in the last build. |
List<TestCaseResult> |
TestCaseResultDao.getQuarantinedTestCasesForBuildResult(BuildResultsSummary buildResultsSummary)
Provide a list of the quarantined tests for a build result
|
List<TestCaseResult> |
TestCaseResultDao.getQuarantinedTestCasesForChainResult(ChainResultsSummary chainResultsSummary)
Provide a list of the quarantined tests for a chain result
|
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getQuarantinedTests()
Returns
Multimap of TestCaseResult that were Quarantined in this build, whether failed,
successful or skipped. |
List<TestCaseResult> |
TestQuarantineManager.getQuarantinedTestsListForBuildResult(BuildResultsSummary buildResultsSummary)
Returns
List of TestCaseResult that are quarantined for a given build result. |
List<TestCaseResult> |
TestQuarantineManager.getQuarantinedTestsListForChainResult(ChainResultsSummary chainResultsSummary)
Get a list of
TestCase of all the tests quarantined for a given chain result |
List<TestCaseResult> |
FilteredTestResults.getSkippedTestList() |
com.google.common.collect.Multimap<T,TestCaseResult> |
FilteredTestResults.getSkippedTests()
Returns
Multimap of TestCaseResult that were Skipped in this build. |
List<TestCaseResult> |
TestClassResult.getTestCaseResults()
Retrieve the TestCaseResults contained within this TestClassResult
|
List<TestCaseResult> |
TestsManager.getTestCaseResults(TestCase testCase,
long buildNumber)
Find a specific run of a testCase
|
List<TestCaseResult> |
TestCaseResultDao.getTestCaseResults(TestCase testCase,
long buildNumber)
Find a specific run of a testCase
|
List<TestCaseResult> |
TestCaseResultDao.getTestCaseResultsForTestCase(TestCase testCase)
Return a list of TestCaseResults for a given TestCase
|
List<TestCaseResult> |
TestCaseResultDao.getTestCaseResultsForTestCaseAndBuilds(TestCase testCase,
List<BuildResultsSummary> buildResults)
Return a list of TestCaseResults for a given TestCase constrained to a specific set of Build Result Summaries
|
com.google.common.collect.TreeMultimap<TestClassResult,TestCaseResult> |
TestsManager.getTestOrderedMap(List<TestCaseResult> tests)
Generate a ListOrderedMap of TestClassResult to List
|
List<TestCaseResult> |
TestsManager.getTestsForBuildResultByDeltaState(BuildResultsSummary summary,
TestDeltaState deltaState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their delta state (e.g BROKEN, FIXED)
|
List<TestCaseResult> |
TestCaseResultDao.getTestsForBuildResultByDeltaState(ResultsSummary summary,
TestDeltaState deltaState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their delta state (e.g BROKEN, FIXED)
|
List<TestCaseResult> |
TestsManager.getTestsForBuildResultByState(BuildResultsSummary summary,
TestState state)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS)
|
List<TestCaseResult> |
TestsManager.getTestsForBuildResultByState(BuildResultsSummary summary,
TestState state,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS).
|
List<TestCaseResult> |
TestCaseResultDao.getTestsForBuildResultByState(ResultsSummary summary,
TestState state)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS)
|
List<TestCaseResult> |
TestCaseResultDao.getTestsForBuildResultByState(ResultsSummary summary,
TestState state,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS).
|
List<TestCaseResult> |
TestCaseResultDao.getTestsForBuildResultSummary(BuildResultsSummary summary)
Retrieves a list of all testCaseResults for a BuildResultSummary
|
List<TestCaseResult> |
TestsManager.getTestsForChainResultByDeltaState(ChainResultsSummary summary,
TestDeltaState deltaState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their delta state (e.g BROKEN, FIXED)
|
List<TestCaseResult> |
TestsManager.getTestsForChainResultByDeltaStates(ChainResultsSummary summary,
TestDeltaState[] deltaStates,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their delta state (e.g BROKEN, FIXED)
|
List<TestCaseResult> |
TestCaseResultDao.getTestsForChainResultByDeltaStates(ChainResultsSummary summary,
TestDeltaState[] deltaStates,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their delta state (e.g BROKEN, FIXED)
|
List<TestCaseResult> |
TestsManager.getTestsForChainResultByState(ChainResultsSummary summary,
TestState testState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their
TestState |
List<TestCaseResult> |
TestCaseResultDao.getTestsForChainResultByState(ChainResultsSummary summary,
TestState testState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their
TestState |
| Modifier and Type | Method and Description |
|---|---|
void |
TestClassResult.addTestCase(TestCaseResult testCaseResult)
Add a testCase to this TestClassResult (to this group)
|
void |
TestCaseResultError.setTestCaseResult(TestCaseResult result)
Set the test case result this error is associated with
|
| Modifier and Type | Method and Description |
|---|---|
com.google.common.collect.TreeMultimap<TestClassResult,TestCaseResult> |
TestsManager.getTestOrderedMap(List<TestCaseResult> tests)
Generate a ListOrderedMap of TestClassResult to List
|
long |
TestCaseResultDao.scrollTestCaseResultsForExport(com.google.common.base.Function<TestCaseResult,Void> function)
Scroll through and execute function for each of TestCaseResults
Objects passed to function are not fully initialized.
|
Copyright © 2016 Atlassian Software Systems Pty Ltd. All rights reserved.