Beispiel #1
0
        public void ShouldReturnValidCpf(string value)
        {
            ValidateCpf validateCpf = new ValidateCpf();

            var result = validateCpf.IsValidCpf(_generateCpf.GenerateNewCpf(value));

            Assert.True(result);
        }
Beispiel #2
0
        public void shouldReturnFalse(string value)
        {
            var result = _validateCpf.IsValidCpf(value);

            Assert.False(result);
        }