Annotation Type EnableGeneration
-
@Documented @Target({ANNOTATION_TYPE,METHOD}) @Retention(RUNTIME) @GeneratorSource(de.rwth.swc.coffee4j.junit.engine.annotation.configuration.sequential.generation.ConstructorBasedGeneratorProvider.class) public @interface EnableGeneration
This is aGeneratorSourceusing theConstructorBasedGeneratorProviderto create new instances of aTestInputGroupGeneratorvia a no-args constructor. Since multiple generators are allowed, just return multiple classes in thealgorithms()method to register more generators, or use any otherGeneratorSourcesinceGeneratorSourceis a repeatable annotation.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description Class<? extends TestInputGroupGenerator>[]algorithmsGets the classes of theTestInputGroupGenerators
-
-
-
Element Detail
-
algorithms
Class<? extends TestInputGroupGenerator>[] algorithms
Gets the classes of theTestInputGroupGenerators- Returns:
- the classes used to generate
TestInputGroupsfor aCombinatorialTest. Need to have a no-args constructor
- Default:
- {de.rwth.swc.coffee4j.algorithmic.sequential.generator.ipog.Ipog.class}
-
-