Interface ModelModifier
-
- All Superinterfaces:
Extension
public interface ModelModifier extends Extension
An interface for an extension which modifies an input parameter model before the normal combinatorial testing process.Example uses:
- Adding seed test cases from csv files
- Adding information from previous CT runs (e.g. weights/seeds)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputParameterModelmodify(InputParameterModel original)Modifies the model in an implementation specific way and returns the newly computed input parameter model.
-
-
-
Method Detail
-
modify
InputParameterModel modify(InputParameterModel original)
Modifies the model in an implementation specific way and returns the newly computed input parameter model. This model may be further processed by anotherModelModifier.- Parameters:
original- the originalInputParameterModel. Is nevernull- Returns:
- the modified model. Should never be
null
-
-