Пример #1
0
 public void Validar_numero_acima_do_maximo_de_caracteres_no_cpf()
 {
     Assert.AreEqual(true, _cpfOverLenght.NotValidateCpfLenght());
 }
Пример #2
0
 public void Validar_numero_abaixo_do_maximo_de_caracteres_no_cpf()
 {
     Assert.AreEqual(true, _cpfBellowLenght.NotValidateCpfLenght());
 }
Пример #3
0
 public void Validar_numero_de_caracteres_correto_no_cpf()
 {
     Assert.AreEqual(false, _cpfValid.NotValidateCpfLenght());
 }