com.polarion.alm.builder.model.IBuildTestResults
FIELDS
Modifiers and Type | Name | Description |
---|---|---|
String | TYPE_ID | structure id |
String | KEY_TEST_COUNT | field testCount of type {@link Integer} |
String | KEY_FAILURE_COUNT | field failureCount of type {@link Integer} |
String | KEY_ERROR_COUNT | field errorCount of type {@link Integer} |
String | KEY_SKIPPED_COUNT | field skippedCount of type {@link Integer} |
METHODS
Modifiers and Type | Name | Description |
---|---|---|
int | getTestCount() | Total number of tests. |
int | getFailureCount() | Number of tests with expected (known) failures. |
int | getErrorCount() | Number of tests with unexpected (unknown) failures = errors. |
int | getSkippedCount() | Number of skipped tests. |
void | setTestCount(int) | Set total number of tests |
void | setFailureCount(int) | Set number of tests with failures. |
void | setErrorCount(int) | Set number of tests with errors. |
void | setSkippedCount(int) | Set number of skipped tests. |
Back to Index