public interface CombinatorialTestManager
| Modifier and Type | Method and Description |
|---|---|
List<int[]> |
generateAdditionalTestInputsWithResult(int[] testInput,
TestResult testResult)
Generates additional test inputs based on results of previous test inputs normally generated by either
generateInitialTests() or this method in a previous iteration. |
List<int[]> |
generateInitialTests()
Generates all initial test inputs for execution.
|
List<int[]> generateInitialTests()
generateAdditionalTestInputsWithResult(int[], TestResult) should be used, as most front-ends won't
call generateAdditionalTestInputsWithResult(int[], TestResult) if this returned no test input.List<int[]> generateAdditionalTestInputsWithResult(int[] testInput, TestResult testResult)
generateInitialTests() or this method in a previous iteration. For example, this functionality can be
used to implement dynamic test input generation or fault characterization (or a combination of both).testInput - the test input for which's result further test inputs should be generatedtestResult - the result of the test inputCopyright © 2019. All rights reserved.