-
- All Implemented Interfaces:
-
java.io.Serializable
public final class TestRunResultsList implements Serializable
A list with tests results data - name, result (OK | FAIL | ERROR), reason.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classTestRunResultsList.Companion
-
Field Summary
Fields Modifier and Type Field Description private Stringoriginprivate Stringgroupprivate final BooleanisEmptyprivate List<TestRunInfo>testResults
-
Constructor Summary
Constructors Constructor Description TestRunResultsList(List<TestRunInfo> testResults)
-
Method Summary
Modifier and Type Method Description final StringgetOrigin()Where did this results collection come from (e.g. final UnitsetOrigin(String origin)Where did this results collection come from (e.g. final StringgetGroup()final UnitsetGroup(String group)final BooleanisEmpty()final List<TestRunInfo>getTestResults()final UnitsetTestResults(List<TestRunInfo> testResults)final TestRunInfoget(Integer index)final Booleancontains(Object o)final BooleanaddAll(Collection<TestRunInfo> c)final Booleanadd(TestRunInfo e)StringtoString()-
-
Constructor Detail
-
TestRunResultsList
TestRunResultsList(List<TestRunInfo> testResults)
-
-
Method Detail
-
setOrigin
final Unit setOrigin(String origin)
Where did this results collection come from (e.g. a filename).
-
getTestResults
final List<TestRunInfo> getTestResults()
-
setTestResults
final Unit setTestResults(List<TestRunInfo> testResults)
-
get
final TestRunInfo get(Integer index)
-
addAll
final Boolean addAll(Collection<TestRunInfo> c)
-
add
final Boolean add(TestRunInfo e)
-
-
-
-