예제 #1
0
 public void Validar_se_possui_letras_no_cpf()
 {
     Assert.AreEqual(true, _cpfNotValid.NotValidate());
     Assert.AreEqual(true, _cpfNotValid2.NotValidate());
 }
예제 #2
0
 public void Validar_se_possui_somente_numeros_no_cpf()
 {
     Assert.AreEqual(false, _cpfValid.NotValidate());
 }