public void Validar_numero_acima_do_maximo_de_caracteres_no_cpf() { Assert.AreEqual(true, _cpfOverLenght.NotValidateCpfLenght()); }
public void Validar_numero_abaixo_do_maximo_de_caracteres_no_cpf() { Assert.AreEqual(true, _cpfBellowLenght.NotValidateCpfLenght()); }
public void Validar_numero_de_caracteres_correto_no_cpf() { Assert.AreEqual(false, _cpfValid.NotValidateCpfLenght()); }