Class TestCaseSummaryImpl
java.lang.Object
com.atlassian.bamboo.resultsummary.tests.TestCaseSummaryImpl
- All Implemented Interfaces:
TestCaseSummary
-
Constructor Summary
ConstructorsConstructorDescriptionTestCaseSummaryImpl(@NotNull TestCase testCase, @NotNull PlanKey planKey, @Nullable List<BuildResultsSummary> filteredBuildResults, TestsManager testsManager, ResultsSummaryManager resultsSummaryManager) -
Method Summary
Modifier and TypeMethodDescriptionfloatCalculates the average number of builds between fixes.longReturns the averag etime in milliseconds it takes for builds to be fixedint@Nullable StringJust returns the key of the failing since build, just in case the buildResult doesn't exist anymore, e.g.@NotNull List<FailurePeriod>@Nullable BuildResultsSummary@Nullable TestCaseResult@Nullable BuildResultsSummary
-
Constructor Details
-
TestCaseSummaryImpl
public TestCaseSummaryImpl(@NotNull @NotNull TestCase testCase, @NotNull @NotNull PlanKey planKey, @Nullable @Nullable List<BuildResultsSummary> filteredBuildResults, TestsManager testsManager, ResultsSummaryManager resultsSummaryManager)
-
-
Method Details
-
getLastTestCaseResult
- Specified by:
getLastTestCaseResultin interfaceTestCaseSummary- Returns:
- the last TestCaseResult to occur if stored in the database. Null if last test case run was successful.
-
getLastRanBuild
- Specified by:
getLastRanBuildin interfaceTestCaseSummary- Returns:
- the buildResultSummary that this test last ran in (if it exists)
-
getFailingSinceBuild
- Specified by:
getFailingSinceBuildin interfaceTestCaseSummary- Returns:
- If the test is currently failing, the BuildResultsSummary the test broke in otherwise null. Build returned should have failed.
-
getFailingSinceBuildKey
Description copied from interface:TestCaseSummaryJust returns the key of the failing since build, just in case the buildResult doesn't exist anymore, e.g. if it was deleted.- Specified by:
getFailingSinceBuildKeyin interfaceTestCaseSummary- Returns:
- String key for the failing since build
-
getCountFailingSince
public int getCountFailingSince()- Specified by:
getCountFailingSincein interfaceTestCaseSummary- Returns:
- If the test is currently failing, how many builds has it been failing for. otherwise 0;
-
getSucceedingSinceBuild
- Specified by:
getSucceedingSinceBuildin interfaceTestCaseSummary- Returns:
- if the test is currently passing, which is the build that the test was most recently fixed in . If the test is failing, returns null. Build returned should have been successful.
-
getFailurePeriods
- Specified by:
getFailurePeriodsin interfaceTestCaseSummary- Returns:
- a list of all the failure periods that occurred within this filter period
-
getAverageElapsedTime
public long getAverageElapsedTime()Returns the averag etime in milliseconds it takes for builds to be fixed- Specified by:
getAverageElapsedTimein interfaceTestCaseSummary- Returns:
- time in milliseconds
-
getAverageElapsedBuilds
public float getAverageElapsedBuilds()Calculates the average number of builds between fixes.- Specified by:
getAverageElapsedBuildsin interfaceTestCaseSummary- Returns:
- approximate number of builds elapsed before a fix
-
getPlanKey
-