Class IpogNeg

    • Method Detail

      • generate

        public Collection<Supplier<TestInputGroup>> generate​(CompleteTestModel model,
                                                             Reporter reporter)
        Description copied from interface: TestInputGroupGenerator
        Generates a arbitrary number of TestInputGroup instances. Each group should be individual in its FaultCharacterizationConfiguration. This means that test inputs with the same input parameter testModel and constraints checker should also be in the same test group as this makes the process of fault characterization easier. If further parameters than the CompleteTestModel need to be used, provide constructor with which they can be set.
        Specified by:
        generate in interface TestInputGroupGenerator
        Parameters:
        model - the complete testModel with which the test input groups should be constructed. Must not be null
        reporter - to report information from inside the generation
        Returns:
        a supplier of a test input group. It may be the case that the group is only generated when calling Supplier.get(). This can be used to make the generation in a multithreaded environment without having the generator manage the parallelism.