public void Validar_se_possui_letras_no_cpf() { Assert.AreEqual(true, _cpfNotValid.NotValidate()); Assert.AreEqual(true, _cpfNotValid2.NotValidate()); }
public void Validar_se_possui_somente_numeros_no_cpf() { Assert.AreEqual(false, _cpfValid.NotValidate()); }