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
-
Method Summary
Modifier and TypeMethodDescriptionint
Number of tests with unexpected (unknown) failures = errors.int
Number of tests with expected (known) failures.int
Number of skipped tests.int
Total number of tests.void
setErrorCount
(int errorCount) Set number of tests with errors.void
setFailureCount
(int failureCount) Set number of tests with failures.void
setSkippedCount
(int skippedCount) Set number of skipped tests.void
setTestCount
(int testCount) Set total number of testsMethods inherited from interface com.polarion.platform.persistence.model.IChangeGenerator
setChangeOwner
Methods inherited from interface com.polarion.platform.persistence.model.IChangeListener
markChanged
Methods inherited from interface com.polarion.platform.persistence.model.IHasCustomValues
getCustomField, getCustomFieldPrototype, getCustomFieldsList, setCustomField
Methods 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
-