Interface TestModuleResult
-
- All Superinterfaces:
java.lang.Iterable<TestResult>
,TestResult
public interface TestModuleResult extends TestResult
A Test Module Result is the parent result element of zero or multipleTestCaseResult
s and the child of exactly oneTestTaskResult
. Please note: If the label of this element is set to the value "IGNORE", it will be ignored during the traversal ofTestResult
s.- See Also:
Iterable.forEach(Consumer)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<TestCaseResult>
testCaseResults()
Return the Test Case Results-
Methods inherited from interface de.interactive_instruments.etf.client.TestResult
description, duration, label, resultStatus, startDate, type
-
-
-
-
Method Detail
-
testCaseResults
java.util.Collection<TestCaseResult> testCaseResults()
Return the Test Case Results- Returns:
- TestCaseResult
-
-