@Test
public void shouldValidateCPFWithRepeatedDigitsIfConfigured() throws Exception{
CPF cpfAnnotation = ObjectWithCPFConfigured.class.getDeclaredField("cpf").getAnnotation(CPF.class);
StellaCPFValidator anotherValidator = new StellaCPFValidator();
anotherValidator.initialize(cpfAnnotation);
boolean valid = anotherValidator.isValid("00000000000", context);
assertTrue(valid);
}