private GeneratorRepository repo;
private TypeVariable<Class<?>> typeVariable;
@Mock private SourceOfRandomness random;
@Before public void beforeEach() {
repo = new GeneratorRepository(random).register(new TestGeneratorSource());
typeVariable = new TypeVariableImpl<Class<?>>("E", List.class, new Type[] { Object.class });
}