Interface TestStepResult
-
- All Superinterfaces:
java.lang.Iterable<TestResult>
,TestResult
,TestResultMessageHolder
public interface TestStepResult extends TestResultMessageHolder, TestResult
A Test Step is the parent result element of zero or multipleTestAssertionResult
s and the child of exactly oneTestCaseResult
. 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.Map<java.lang.String,java.lang.String>
getAttachment()
Additional information that are attached to this result.java.util.Collection<TestAssertionResult>
testAssertionResults()
Return assertion results-
Methods inherited from interface de.interactive_instruments.etf.client.TestResult
description, duration, label, resultStatus, startDate, type
-
Methods inherited from interface de.interactive_instruments.etf.client.TestResultMessageHolder
messages
-
-
-
-
Method Detail
-
getAttachment
java.util.Map<java.lang.String,java.lang.String> getAttachment()
Additional information that are attached to this result.- Returns:
- a map with the name of the attachment as key and the additional information as value
-
testAssertionResults
java.util.Collection<TestAssertionResult> testAssertionResults()
Return assertion results- Returns:
- assertion results or null
-
-