Uses of Interface
com.atlassian.bamboo.resultsummary.tests.TestCaseResult

Packages that use TestCaseResult
com.atlassian.bamboo.build   
com.atlassian.bamboo.build.tests   
com.atlassian.bamboo.chains   
com.atlassian.bamboo.plugins.rest.model.build.test   
com.atlassian.bamboo.resultsummary.tests   
 

Uses of TestCaseResult in com.atlassian.bamboo.build
 

Methods in com.atlassian.bamboo.build that return TestCaseResult
 TestCaseResult ViewTestCaseResultAction.getTestCaseResult()
           
 

Methods in com.atlassian.bamboo.build with parameters of type TestCaseResult
 ResultsSummary ChainResultsAction.getFailingSinceForTest(TestCaseResult testCaseResult)
           
 BuildResultsSummary BuildResultsAction.getFailingSinceForTest(TestCaseResult testCaseResult)
           
 java.lang.String BuildResultsAction.getFailingSinceForTestString(BuildResultsSummary buildResultsSummary, TestCaseResult testCaseResult)
           
 java.lang.String ChainResultsAction.getFailingSinceForTestString(ResultsSummary resultsSummary, TestCaseResult testCaseResult)
           
 

Uses of TestCaseResult in com.atlassian.bamboo.build.tests
 

Methods in com.atlassian.bamboo.build.tests that return types with arguments of type TestCaseResult
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> ViewTestsSummary.getRecentFailures(TestCase testCase, int number)
           
 

Uses of TestCaseResult in com.atlassian.bamboo.chains
 

Methods in com.atlassian.bamboo.chains that return types with arguments of type TestCaseResult
 java.util.List<TestCaseResult> ChainFilteredTestResults.getAllFailedTestList()
           
 com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> ChainFilteredTestResults.getAllFailedTests()
           
 com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> ChainFilteredTestResults.getExistingFailedTests()
           
 com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> ChainFilteredTestResults.getFixedTests()
           
 com.google.common.collect.Multimap<TestClassResultDescriptor,TestCaseResult> ChainFilteredTestResults.getNewFailedTests()
           
 

Uses of TestCaseResult in com.atlassian.bamboo.plugins.rest.model.build.test
 

Constructors in com.atlassian.bamboo.plugins.rest.model.build.test with parameters of type TestCaseResult
RestTestResult(TestCaseResult testCaseResult, java.lang.String status)
           
 

Uses of TestCaseResult in com.atlassian.bamboo.resultsummary.tests
 

Classes in com.atlassian.bamboo.resultsummary.tests that implement TestCaseResult
 class TestCaseResultImpl
           
 

Methods in com.atlassian.bamboo.resultsummary.tests that return TestCaseResult
 TestCaseResult TestCaseSummaryImpl.getLastTestCaseResult()
           
 TestCaseResult TestCaseSummary.getLastTestCaseResult()
           
 TestCaseResult TestCaseResultStatisticsProviderImpl.getTestCaseResult()
           
 TestCaseResult TestCaseResultErrorImpl.getTestCaseResult()
           
 TestCaseResult TestCaseResultStatisticsProvider.getTestCaseResult()
           
 TestCaseResult TestCaseResultError.getTestCaseResult()
           
 TestCaseResult TestResultsHibernateDao.getTestCaseResult(TestCase testCase, long buildNumber)
           
 TestCaseResult TestsManagerImpl.getTestCaseResult(TestCase testCase, long buildNumber)
           
 TestCaseResult TestsManager.getTestCaseResult(TestCase testCase, long buildNumber)
          Find a specific run of a testCase
 TestCaseResult TestResultsDao.getTestCaseResult(TestCase testCase, long buildNumber)
          Find a specific run of a testCase
 TestCaseResult TestResultsHibernateDao.getTestCaseResultById(long testCaseId)
           
 TestCaseResult TestsManagerImpl.getTestCaseResultById(long testCaseId)
           
 TestCaseResult TestsManager.getTestCaseResultById(long testCaseResultId)
          Find a specific testCaseResult by id
 TestCaseResult TestResultsDao.getTestCaseResultById(long testCaseResultId)
          Find a specific testCaseResult by id
 

Methods in com.atlassian.bamboo.resultsummary.tests that return types with arguments of type TestCaseResult
 java.util.List<TestCaseResult> FilteredTestResultsAbstract.getAllFailedTestList()
           
 java.util.List<TestCaseResult> FilteredTestResults.getAllFailedTestList()
           
 com.google.common.collect.Multimap<TestClassResult,TestCaseResult> FilteredTestResultsAbstract.getAllFailedTests()
           
 com.google.common.collect.Multimap<T,TestCaseResult> FilteredTestResults.getAllFailedTests()
          Returns Multimap of all TestCaseResult that have failed in this build.
protected  java.util.List<TestCaseResult> FilteredTestResultsPaginableImpl.getBrokenTestList()
           
protected  java.util.List<TestCaseResult> FilteredTestResultsImpl.getBrokenTestList()
           
protected abstract  java.util.List<TestCaseResult> FilteredTestResultsAbstract.getBrokenTestList()
           
 com.google.common.collect.Multimap<TestClassResult,TestCaseResult> FilteredTestResultsAbstract.getExistingFailedTests()
           
 com.google.common.collect.Multimap<T,TestCaseResult> FilteredTestResults.getExistingFailedTests()
          Returns Multimap of TestCaseResult that were failing in the previous build and are still failing
protected  java.util.List<TestCaseResult> FilteredTestResultsPaginableImpl.getFailingTestList()
           
protected  java.util.List<TestCaseResult> FilteredTestResultsImpl.getFailingTestList()
           
protected abstract  java.util.List<TestCaseResult> FilteredTestResultsAbstract.getFailingTestList()
           
protected  java.util.List<TestCaseResult> FilteredTestResultsPaginableImpl.getFixedTestList()
           
protected  java.util.List<TestCaseResult> FilteredTestResultsImpl.getFixedTestList()
           
protected abstract  java.util.List<TestCaseResult> FilteredTestResultsAbstract.getFixedTestList()
           
 com.google.common.collect.Multimap<TestClassResult,TestCaseResult> FilteredTestResultsAbstract.getFixedTests()
           
 com.google.common.collect.Multimap<T,TestCaseResult> FilteredTestResults.getFixedTests()
          Returns Multimap of TestCaseResult that have been fixed in this build
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsManager.getLastNFailingResults(TestCase testCase, java.util.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.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
          Retrieve the last n failing testResults for this given test case, latest first.
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsHibernateDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestsDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.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<TestClassResult,TestCaseResult> FilteredTestResultsAbstract.getNewFailedTests()
           
 com.google.common.collect.Multimap<T,TestCaseResult> FilteredTestResults.getNewFailedTests()
          Returns Multimap of TestCaseResult that have failed, but were not failing in the last build.
protected  java.util.Map<TestCase,TestCaseResult> UpgradeTestsManager.getPreviousFailures(BuildResultsSummary buildResultsSummary)
           
protected  java.util.Map<TestCase,TestCaseResult> TestsManagerImpl.getPreviousFailures(BuildResultsSummary buildResultsSummary)
           
 java.util.List<TestCaseResult> TestClassResultImpl.getTestCaseResults()
           
 java.util.List<TestCaseResult> TestClassResult.getTestCaseResults()
          Retrieve the TestCaseResults contained within this TestClassResult
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestCaseResultsForTestCase(TestCase testCase)
           
 java.util.List<TestCaseResult> TestResultsDao.getTestCaseResultsForTestCase(TestCase testCase)
          Return a list of TestCaseResults for a given TestCase
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestCaseResultsForTestCaseAndBuilds(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<TestCaseResult> TestResultsDao.getTestCaseResultsForTestCaseAndBuilds(TestCase testCase, java.util.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> TestsManagerImpl.getTestOrderedMap(java.util.List<TestCaseResult> tests)
           
 com.google.common.collect.TreeMultimap<TestClassResult,TestCaseResult> TestsManager.getTestOrderedMap(java.util.List<TestCaseResult> tests)
          Generate a ListOrderedMap of TestClassResult to List based on a given list of TestCaseResults.
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForBuildResultByDeltaState(BuildResultsSummary summary, TestDeltaState deltaState, int firstResult, int maxCount)
           
 java.util.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)
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForBuildResultByDeltaState(ResultsSummary summary, TestDeltaState state, int firstResult, int maxCount)
           
 java.util.List<TestCaseResult> TestResultsDao.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)
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForBuildResultByState(BuildResultsSummary summary, TestState state)
           
 java.util.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)
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForBuildResultByState(BuildResultsSummary summary, TestState state, int firstResult, int maxCount)
           
 java.util.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).
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForBuildResultByState(ResultsSummary summary, TestState state)
           
 java.util.List<TestCaseResult> TestResultsDao.getTestsForBuildResultByState(ResultsSummary summary, TestState state)
          Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS)
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForBuildResultByState(ResultsSummary summary, TestState state, int firstResult, int maxCount)
           
 java.util.List<TestCaseResult> TestResultsDao.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).
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForBuildResultSummary(BuildResultsSummary summary)
           
 java.util.List<TestCaseResult> TestResultsDao.getTestsForBuildResultSummary(BuildResultsSummary summary)
          Retrieves a list of all testCaseResults for a BuildResultSummary
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForChainResultByDeltaState(ChainResultsSummary summary, TestDeltaState deltaState, int firstResult, int maxCount)
           
 java.util.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)
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForChainResultByDeltaStates(ChainResultsSummary summary, TestDeltaState[] deltaStates, int firstResult, int maxCount)
           
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForChainResultByDeltaStates(ChainResultsSummary summary, TestDeltaState[] deltaStates, int firstResult, int maxCount)
           
 java.util.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)
 java.util.List<TestCaseResult> TestResultsDao.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)
 java.util.List<TestCaseResult> TestResultsHibernateDao.getTestsForChainResultByState(ChainResultsSummary summary, TestState state, int firstResult, int maxCount)
           
 java.util.List<TestCaseResult> TestsManagerImpl.getTestsForChainResultByState(ChainResultsSummary summary, TestState testState, int firstResult, int maxCount)
           
 java.util.List<TestCaseResult> TestsManager.getTestsForChainResultByState(ChainResultsSummary summary, TestState testState, int firstResult, int maxCount)
          Retrieves a list of testCaseResults for a ChainResultSummary based on their TestState
 java.util.List<TestCaseResult> TestResultsDao.getTestsForChainResultByState(ChainResultsSummary summary, TestState testState, int firstResult, int maxCount)
          Retrieves a list of testCaseResults for a ChainResultSummary based on their TestState
 

Methods in com.atlassian.bamboo.resultsummary.tests with parameters of type TestCaseResult
 void TestClassResultImpl.addTestCase(TestCaseResult testCaseResult)
           
 void TestClassResult.addTestCase(TestCaseResult testCaseResult)
          Add a testCase to this TestClassResult (to this group)
 void TestCaseResultMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<TestCaseResult> list, TestCaseResult object, long objectIndex, net.sf.hibernate.Session session)
           
 int TestCaseResultImpl.compareTo(TestCaseResult testCaseResult)
           
protected  void TestCaseResultMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement, TestCaseResult object, net.sf.hibernate.Session session)
           
protected  void TestCaseResultMapper.importProperties(TestCaseResult object, org.codehaus.staxmate.in.SMInputCursor inputCursor, net.sf.hibernate.Session session)
           
 void TestCaseResultErrorImpl.setTestCaseResult(TestCaseResult testCaseResult)
           
 void TestCaseResultError.setTestCaseResult(TestCaseResult result)
          Set the test case result this error is associated with
protected  void TestsManagerImpl.updateTestCaseResultDeltaInformation(BuildResultsSummary summary, TestCaseResult testResult, java.util.Map<TestCase,TestCaseResult> previousFailures)
           
 

Method parameters in com.atlassian.bamboo.resultsummary.tests with type arguments of type TestCaseResult
 void TestCaseResultMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<TestCaseResult> list, TestCaseResult object, long objectIndex, net.sf.hibernate.Session session)
           
 com.google.common.collect.TreeMultimap<TestClassResult,TestCaseResult> TestsManagerImpl.getTestOrderedMap(java.util.List<TestCaseResult> tests)
           
 com.google.common.collect.TreeMultimap<TestClassResult,TestCaseResult> TestsManager.getTestOrderedMap(java.util.List<TestCaseResult> tests)
          Generate a ListOrderedMap of TestClassResult to List based on a given list of TestCaseResults.
 long TestResultsHibernateDao.scrollTestCaseResultsForExport(com.google.common.base.Function<TestCaseResult,java.lang.Void> function)
           
 long TestResultsDao.scrollTestCaseResultsForExport(com.google.common.base.Function<TestCaseResult,java.lang.Void> function)
          Scroll through and execute function for each of TestCaseResults Objects passed to function are not fully initialized.
protected  void TestsManagerImpl.updateTestCaseResultDeltaInformation(BuildResultsSummary summary, TestCaseResult testResult, java.util.Map<TestCase,TestCaseResult> previousFailures)
           
 

Constructors in com.atlassian.bamboo.resultsummary.tests with parameters of type TestCaseResult
TestCaseResultStatisticsProviderImpl(TestCaseResult testCaseResult, BuildResultsSummary buildResultsSummary)
           
 



Copyright © 2010 Atlassian. All Rights Reserved.