Ejemplo n.º 1
0
        public void SecondBookISBNNumberValidatorTest()
        {
            BookValidator bookValidator = new BookValidator();
            bool          expected      = false;
            var           actual        = bookValidator.HasThirteenDigitsInISBNNumber("123456789123");

            Assert.AreEqual(expected, actual);
        }