Package com.polarion.alm.builder.model
Interface IBuildTestResults
- All Superinterfaces:
IChangeGenerator,IChangeListener,IHasCustomValues,IHasValues,IStructure
Build test results.
- Version:
- $Revision$ $Date$
- Author:
- Stepan Roh, Polarion Software
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionintNumber of tests with unexpected (unknown) failures = errors.intNumber of tests with expected (known) failures.intNumber of skipped tests.intTotal number of tests.voidsetErrorCount(int errorCount) Set number of tests with errors.voidsetFailureCount(int failureCount) Set number of tests with failures.voidsetSkippedCount(int skippedCount) Set number of skipped tests.voidsetTestCount(int testCount) Set total number of testsMethods inherited from interface com.polarion.platform.persistence.model.IChangeGenerator
setChangeOwnerMethods inherited from interface com.polarion.platform.persistence.model.IChangeListener
markChangedMethods inherited from interface com.polarion.platform.persistence.model.IHasCustomValues
getCustomField, getCustomFieldPrototype, getCustomFieldsList, setCustomFieldMethods inherited from interface com.polarion.platform.persistence.model.IStructure
getEnumeration, getEnumerationOptionForField, getEnumerationTypeForField, getPrototype, getValue, isModified, isReadOnly, isReadOnly, setValue
-
Field Details
-
Method Details
-
getTestCount
int getTestCount()Total number of tests.- Returns:
- number of tests
-
getFailureCount
int getFailureCount()Number of tests with expected (known) failures.- Returns:
- number of failures
-
getErrorCount
int getErrorCount()Number of tests with unexpected (unknown) failures = errors.- Returns:
- number of errors.
-
getSkippedCount
int getSkippedCount()Number of skipped tests.- Returns:
- number of skipped tests
-
setTestCount
void setTestCount(int testCount) Set total number of tests- Parameters:
testCount- number of tests
-
setFailureCount
void setFailureCount(int failureCount) Set number of tests with failures.- Parameters:
failureCount- number of tests with failures
-
setErrorCount
void setErrorCount(int errorCount) Set number of tests with errors.- Parameters:
errorCount- number of tests with errors
-
setSkippedCount
void setSkippedCount(int skippedCount) Set number of skipped tests.- Parameters:
skippedCount- number of skipped tests
-