Interface TestResult
-
- All Superinterfaces:
java.lang.Iterable<TestResult>
- All Known Subinterfaces:
TestAssertionResult
,TestCaseResult
,TestModuleResult
,TestStepResult
,TestTaskResult
public interface TestResult extends java.lang.Iterable<TestResult>
The Test Result of an test item If a Test Result item is used for iteration, the iterator will also traverse the sub results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
description()
Description of the associated Test in the ETSlong
duration()
The duration of this test in millisecondsjava.lang.String
label()
Label of the associated Test in the ETSResultStatus
resultStatus()
The status that has been aggregated from the child tests itemsjava.time.ZonedDateTime
startDate()
The start datajava.lang.String
type()
Returns the string representation of this type
-
-
-
Method Detail
-
type
java.lang.String type()
Returns the string representation of this type- Returns:
- type as string
-
label
java.lang.String label()
Label of the associated Test in the ETS- Returns:
- label as string
-
description
java.lang.String description()
Description of the associated Test in the ETS- Returns:
- label as string
-
resultStatus
ResultStatus resultStatus()
The status that has been aggregated from the child tests items- Returns:
- label as string
-
startDate
java.time.ZonedDateTime startDate()
The start data- Returns:
- start as date
-
duration
long duration()
The duration of this test in milliseconds- Returns:
- duration in milliseconds
-
-