Class GetTestCasesCallableResult
- java.lang.Object
-
- com.piketec.jenkins.plugins.tpt.api.callables.GetTestCasesCallableResult
-
- All Implemented Interfaces:
Serializable
public class GetTestCasesCallableResult extends Object implements Serializable
Data container for the result returned byGetTestCasesCallable
. Contains the union of all test cases contained in test sets used by a execution configuration and the total number of test cases. The total number may be greater than the items in the set union since single test cases can be used by multiple test sets.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description boolean
testCaseConditionsPresent
true
if any of the test sets had an test set condition AND tpt version supported cecking for test set condtions via API,false
otherwise.int
testCaseCount
The total number of test cases including duplicates.Set<String>
testCases
The names of all test cases.TptVersion
tptVersion
The TPT version the test cases were collected with
-
-
-
Field Detail
-
testCaseCount
public final int testCaseCount
The total number of test cases including duplicates.
-
testCaseConditionsPresent
public final boolean testCaseConditionsPresent
true
if any of the test sets had an test set condition AND tpt version supported cecking for test set condtions via API,false
otherwise.
-
tptVersion
public final TptVersion tptVersion
The TPT version the test cases were collected with
-
-