Interface TestTaskResult
-
- All Superinterfaces:
java.lang.Iterable<TestResult>,TestResult
public interface TestTaskResult extends TestResult
A Test Task Result represents the result of executing exactly one ETS against one Test Object. It is the parent result element of one or multipleTestModuleResults and the child of exactly oneTestRunResult.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringexecutableTestSuiteEid()The ID of the Executable Test Suite that generated this result.java.util.Optional<java.util.Collection<java.lang.String>>internalErrors()If internal errors occurred, a container is returned with the error messages, otherwise the container is empty.java.util.Collection<TestModuleResult>testModuleResults()Return the Test Module Results-
Methods inherited from interface de.interactive_instruments.etf.client.TestResult
description, duration, label, resultStatus, startDate, type
-
-
-
-
Method Detail
-
testModuleResults
java.util.Collection<TestModuleResult> testModuleResults()
Return the Test Module Results- Returns:
- TestModuleResults
-
internalErrors
java.util.Optional<java.util.Collection<java.lang.String>> internalErrors()
If internal errors occurred, a container is returned with the error messages, otherwise the container is empty.- Returns:
- error message or empty
-
executableTestSuiteEid
java.lang.String executableTestSuiteEid()
The ID of the Executable Test Suite that generated this result.- Returns:
- Executable Test Suite ID
-
-