Interface MutableTestResultsSummary
- All Superinterfaces:
TestResultsSummary
- All Known Implementing Classes:
TestResultsSummaryImpl
Mutable version of
TestResultsSummary-
Method Summary
Modifier and TypeMethodDescriptionvoidaddCountsFrom(@NotNull TestResultsSummary testResultsSummary) Merges the givenTestResultsSummarywith the currentTestResultsSummaryvoidaddToTotalDuration(long addition) voidvoidvoidvoidvoidvoidvoidvoidvoidsetExistingFailedTestCount(int existingFailedTestCount) voidsetFailedTestCaseCount(int failedTestCaseCount) voidsetFixedTestCaseCount(int fixedTestCaseCount) voidsetNewFailedTestCaseCount(int brokenTestCaseCount) voidsetQuarantinedTestCaseCount(int quarantinedTestCount) voidsetSkippedTestCaseCount(int skippedTestCaseCount) voidsetSuccessfulTestCaseCount(int successfulTestCaseCount) voidsetTotalTestCaseCount(int totalTestCaseCount) voidsetTotalTestDuration(long totalTestDuration) Methods inherited from interface com.atlassian.bamboo.resultsummary.tests.TestResultsSummary
getExistingFailedTestCount, getFailedTestCaseCount, getFixedTestCaseCount, getIgnoredTestCaseCount, getNewFailedTestCaseCount, getQuarantinedTestCaseCount, getSkippedTestCaseCount, getSuccessfulTestCaseCount, getTestSummaryDescription, getTotalTestCaseCount, getTotalTestDuration, hasFailedTestResults, hasIgnoredTestResults, hasQuarantinedTestResults, hasSkippedTestResults, hasSuccessfulTestResults
-
Method Details
-
incrementSuccessCount
void incrementSuccessCount() -
incrementFailedCount
void incrementFailedCount() -
incrementSkippedCount
void incrementSkippedCount() -
incrementTotalCount
void incrementTotalCount() -
incrementNewFailureCount
void incrementNewFailureCount() -
incrementExistingFailureCount
void incrementExistingFailureCount() -
incrementFixedCount
void incrementFixedCount() -
incrementQuarantinedCount
void incrementQuarantinedCount() -
addToTotalDuration
void addToTotalDuration(long addition) -
setSuccessfulTestCaseCount
void setSuccessfulTestCaseCount(int successfulTestCaseCount) -
setFailedTestCaseCount
void setFailedTestCaseCount(int failedTestCaseCount) -
setTotalTestCaseCount
void setTotalTestCaseCount(int totalTestCaseCount) -
setNewFailedTestCaseCount
void setNewFailedTestCaseCount(int brokenTestCaseCount) -
setExistingFailedTestCount
void setExistingFailedTestCount(int existingFailedTestCount) -
setFixedTestCaseCount
void setFixedTestCaseCount(int fixedTestCaseCount) -
setQuarantinedTestCaseCount
void setQuarantinedTestCaseCount(int quarantinedTestCount) -
setSkippedTestCaseCount
void setSkippedTestCaseCount(int skippedTestCaseCount) -
setTotalTestDuration
void setTotalTestDuration(long totalTestDuration) -
addCountsFrom
Merges the givenTestResultsSummarywith the currentTestResultsSummary- Parameters:
testResultsSummary- to merge from
-