public void ShouldReturnValidCpf(string value) { ValidateCpf validateCpf = new ValidateCpf(); var result = validateCpf.IsValidCpf(_generateCpf.GenerateNewCpf(value)); Assert.True(result); }
public void shouldReturnFalse(string value) { var result = _validateCpf.IsValidCpf(value); Assert.False(result); }