Interface SequentialCombinatorialTestManager

    • Method Detail

      • generateAdditionalTestInputsWithResult

        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. For example, this functionality can be used to implement dynamic test input generation or fault characterization (or a combination of both).
        Parameters:
        testInput - the test input for which's result further test inputs should be generated
        testResult - the result of the test input
        Returns:
        a list of additional test inputs generated based on the result of the given test inputs. This does not necessarily have to return any test inputs for each call