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

Packages that use TestCase
com.atlassian.bamboo.build.tests   
com.atlassian.bamboo.charts   
com.atlassian.bamboo.resultsummary.tests   
com.atlassian.bamboo.ww2.actions.chains   
 

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

Methods in com.atlassian.bamboo.build.tests that return TestCase
 TestCase ViewTestCaseAction.getTestCase()
           
 

Methods in com.atlassian.bamboo.build.tests that return types with arguments of type TestCase
 java.util.List<TestCase> ViewTestsSummaryForPlan.getLongestRunningTests()
           
 java.util.List<TestCase> ViewTestsSummary.getLongestRunningTests()
           
 java.util.List<Pair<TestCase,java.lang.Float>> ViewTestsSummaryForPlan.getLongestTimeToFixTests()
           
 java.util.List<Pair<TestCase,java.lang.Float>> ViewTestsSummary.getLongestTimeToFixTests()
           
 java.util.List<Pair<TestCase,java.lang.Integer>> ViewTestsSummaryForPlan.getMostFailingTests()
           
 java.util.List<Pair<TestCase,java.lang.Integer>> ViewTestsSummary.getMostFailingTests()
           
 

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

Uses of TestCase in com.atlassian.bamboo.charts
 

Constructors in com.atlassian.bamboo.charts with parameters of type TestCase
TestCaseBuildTimesChart(int height, int width, java.lang.String chartTitle, java.lang.String xAxisLabel, java.lang.String yAxisLabel, TestCase testCase, java.util.List<TestCaseResultStatisticsProvider> results)
           
 

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

Classes in com.atlassian.bamboo.resultsummary.tests that implement TestCase
 class TestCaseImpl
           
 

Methods in com.atlassian.bamboo.resultsummary.tests that return TestCase
 TestCase TestCase.copyTestCase()
          Creates a copy of the TestCase.
 TestCase TestCaseImpl.copyTestCase()
           
 TestCase TestCaseHibernateDao.findById(long testCaseId)
           
 TestCase TestCaseDao.findById(long testCaseId)
          Find a specific testCase by id
 TestCase TestCaseResult.getTestCase()
           
 TestCase TestCaseResultImpl.getTestCase()
           
 TestCase TestsManager.getTestCaseById(long testCaseId)
          Find a specific testCase by id
 TestCase TestsManagerImpl.getTestCaseById(long testCaseId)
           
 

Methods in com.atlassian.bamboo.resultsummary.tests that return types with arguments of type TestCase
 java.util.List<TestCase> TestQuarantineManager.getCurrentlyQuarantinedTests(ImmutableChain chain)
          Get a list of TestCase of all the tests currently quarantined for a given plan
 java.util.List<TestCase> TestQuarantineManagerImpl.getCurrentlyQuarantinedTests(ImmutableChain chain)
           
 java.util.List<TestCase> TestQuarantineManager.getCurrentlyQuarantinedTests(ImmutableJob job)
          Get a list of TestClass and TestCase names of all the tests currently quarantined for a given job In string form for use in the BuildContext custom config
 java.util.List<TestCase> TestQuarantineManagerImpl.getCurrentlyQuarantinedTests(ImmutableJob job)
           
 java.util.List<TestCase> TestsManager.getLongestRunningTestCases(ImmutablePlan plan)
          Provide a list of the top ten longest running tests for a plan, based on the duration of the TestCase's TestCaseResults Finds top 10 results in order (longest first)
 java.util.List<TestCase> TestsManagerImpl.getLongestRunningTestCases(ImmutablePlan plan)
           
 java.util.List<TestCase> TestCaseHibernateDao.getLongestRunningTestCasesForPlan(ImmutablePlan plan)
           
 java.util.List<TestCase> TestCaseDao.getLongestRunningTestCasesForPlan(ImmutablePlan plan)
          Provide a list of the top ten longest running tests for a plan, based on the duration of the TestCase's TestCaseResults Finds top 10 results in order (longest first)
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(ImmutablePlan plan)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(ImmutablePlan plan)
           
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManager.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
          Retrieve a list of the test cases that have taken the longest amount of time to fix.
 java.util.List<Pair<TestCase,java.lang.Float>> TestsManagerImpl.getLongestToFixTestCases(java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(ImmutablePlan plan)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(ImmutablePlan plan)
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
          Provide a list of the top 10 most failing test cases for a plan.
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getMostFailingTestCases(java.util.List<BuildResultsSummary> buildResults)
           
protected  java.util.Map<TestCase,TestCaseResult> TestsManagerImpl.getPreviousFailures(BuildResultsSummary buildResultsSummary)
           
 java.util.List<TestCase> TestCaseHibernateDao.getQuarantinedTestCasesForChain(ImmutableChain chain)
           
 java.util.List<TestCase> TestCaseDao.getQuarantinedTestCasesForChain(ImmutableChain chain)
          Provide a list of the quarantined tests for a job
 java.util.List<TestCase> TestCaseHibernateDao.getQuarantinedTestCasesForJob(ImmutableJob job)
           
 java.util.List<TestCase> TestCaseDao.getQuarantinedTestCasesForJob(ImmutableJob job)
          Provide a list of the quarantined tests for a job
 java.util.List<TestCase> TestClass.getTestCases()
          Retrieve the TestCases that are part of this class.
 java.util.List<TestCase> TestClassImpl.getTestCases()
           
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManager.getTopBrokenTests(PlanKey planKey, BuildResultsFilter filter)
          Returns a pai of the top 10 tests that's broken + the count for a given filter period
 java.util.List<Pair<TestCase,java.lang.Integer>> TestsManagerImpl.getTopBrokenTests(PlanKey planKey, BuildResultsFilter filter)
           
 

Methods in com.atlassian.bamboo.resultsummary.tests with parameters of type TestCase
 void TestClass.addTest(TestCase testCase)
          Add a testCase to this group
 void TestClassImpl.addTest(TestCase testCase)
           
 void TestCaseMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<TestCase> list, TestCase object, long objectIndex, net.sf.hibernate.Session session)
           
 int TestCaseImpl.compareTo(TestCase testCase)
           
protected  void TestCaseMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement, TestCase testCase, net.sf.hibernate.Session session, ExportDetailsBean exportDetailsBean)
           
 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, 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>> TestsManagerImpl.getLastNFailingResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestCaseResultHibernateDao.getLastNFailingResultsForTestCase(TestCase testCase, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestCaseResultDao.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>> TestCaseResultHibernateDao.getLastNFailingResultsForTestCaseAndBuildResults(TestCase testCase, java.util.List<BuildResultsSummary> buildResults, int number)
           
 java.util.List<Pair<TestCaseResult,java.lang.Integer>> TestCaseResultDao.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.
 java.util.List<TestCaseResultStatisticsProvider> TestsManager.getResultStatistics(TestCase testCase)
          Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case, for use by e.g.
 java.util.List<TestCaseResultStatisticsProvider> TestsManagerImpl.getResultStatistics(TestCase testCase)
           
 java.util.List<TestCaseResultStatisticsProvider> TestsManager.getResultStatistics(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
          Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case and contained within a specific span of build result summaries.
 java.util.List<TestCaseResultStatisticsProvider> TestsManagerImpl.getResultStatistics(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<TestCaseResultStatisticsProvider> TestCaseResultHibernateDao.getResultStatisticsForTestCase(TestCase testCase)
           
 java.util.List<TestCaseResultStatisticsProvider> TestCaseResultDao.getResultStatisticsForTestCase(TestCase testCase)
          Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case, for use by e.g.
 java.util.List<TestCaseResultStatisticsProvider> TestCaseResultHibernateDao.getResultStatisticsForTestCaseAndBuilds(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<TestCaseResultStatisticsProvider> TestCaseResultDao.getResultStatisticsForTestCaseAndBuilds(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
          Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case and contained within a specific span of build result summaries.
 BuildResultsSummary TestCaseResultHibernateDao.getSucceedingSinceBuildResultSummary(TestCase testCase)
           
 BuildResultsSummary TestsManager.getSucceedingSinceBuildResultSummary(TestCase testCase)
          Find the build in which the given test has been successful since.
 BuildResultsSummary TestCaseResultDao.getSucceedingSinceBuildResultSummary(TestCase testCase)
          Find the build in which the given test has been successful since.
 BuildResultsSummary TestsManagerImpl.getSucceedingSinceBuildResultSummary(TestCase testCase)
           
 TestCaseResult TestCaseResultHibernateDao.getTestCaseResult(TestCase testCase, long buildNumber)
           
 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 TestsManagerImpl.getTestCaseResult(TestCase testCase, long buildNumber)
           
 java.util.List<TestCaseResult> TestCaseResultHibernateDao.getTestCaseResults(TestCase testCase, long buildNumber)
           
 java.util.List<TestCaseResult> TestsManager.getTestCaseResults(TestCase testCase, long buildNumber)
          Find a specific run of a testCase
 java.util.List<TestCaseResult> TestCaseResultDao.getTestCaseResults(TestCase testCase, long buildNumber)
          Find a specific run of a testCase
 java.util.List<TestCaseResult> TestsManagerImpl.getTestCaseResults(TestCase testCase, long buildNumber)
           
 java.util.List<TestCaseResult> TestCaseResultHibernateDao.getTestCaseResultsForTestCase(TestCase testCase)
           
 java.util.List<TestCaseResult> TestCaseResultDao.getTestCaseResultsForTestCase(TestCase testCase)
          Return a list of TestCaseResults for a given TestCase
 java.util.List<TestCaseResult> TestCaseResultHibernateDao.getTestCaseResultsForTestCaseAndBuilds(TestCase testCase, java.util.List<BuildResultsSummary> buildResults)
           
 java.util.List<TestCaseResult> TestCaseResultDao.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
protected  void TestCaseMapper.importProperties(TestCase object, org.codehaus.staxmate.in.SMInputCursor inputCursor, net.sf.hibernate.Session session)
           
 void TestsManager.saveTestCase(TestCase testCase)
          Save an individual TestCase to the database
 void TestsManagerImpl.saveTestCase(TestCase testCase)
           
 void TestCaseResultImpl.setTestCase(TestCase testCase)
           
 

Method parameters in com.atlassian.bamboo.resultsummary.tests with type arguments of type TestCase
 void TestCaseMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<TestCase> list, TestCase object, long objectIndex, net.sf.hibernate.Session session)
           
 long TestCaseHibernateDao.scrollTestCasesForExport(com.google.common.base.Function<TestCase,java.lang.Void> function)
           
 long TestCaseDao.scrollTestCasesForExport(com.google.common.base.Function<TestCase,java.lang.Void> function)
          Scroll through and execute function for each of TestCase records 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 TestCase
TestCaseResultImpl(TestCase testCase, long duration, TestState state)
           
TestCaseResultImpl(TestCase testCase, long duration, TestState state, java.util.List<TestCaseResultError> testCaseResultErrors)
           
TestCaseResultImpl(TestCase testCase, long duration, TestState state, java.util.List<TestCaseResultError> testCaseResultErrors, java.util.List<java.lang.String> quarantinedTests)
           
TestCaseSummaryImpl(TestCase testCase, ImmutableBuildable build, java.util.List<BuildResultsSummary> filteredBuildResults, TestsManager testsManager, ResultsSummaryManager resultsSummaryManager)
           
 

Uses of TestCase in com.atlassian.bamboo.ww2.actions.chains
 

Methods in com.atlassian.bamboo.ww2.actions.chains that return types with arguments of type TestCase
 java.util.List<TestCase> ViewQuarantinedTests.getQuarantinedTestCases()
           
 

Methods in com.atlassian.bamboo.ww2.actions.chains with parameters of type TestCase
 com.atlassian.user.User ViewQuarantinedTests.getQuarantiningUser(TestCase testCase)
           
 java.util.List<TestCaseResult> ViewQuarantinedTests.getTestCaseHistory(TestCase testCase)
           
 



Copyright © 2013 Atlassian Software Systems Pty Ltd. All Rights Reserved.