}
private static void addTesters(TestSuite suite, Class<?> testClass,
Method characteristicMethod) {
ForAll annotation = characteristicMethod.getAnnotation(ForAll.class);
Object testClassInstance = GeneratorFactory.newInstance(testClass);
suite.addTest(new CharacteristicsTester(testClassInstance,
new RoundRobinGenerator<Object>(createGenerator(
testClassInstance, annotation)), characteristicMethod,
annotation.runs(), annotation.verbose()));
}