Example #1
0
        public void TestMethod7()
        {
            //Arrange
            string pin      = "@234";
            bool   expected = false;
            //Act
            bool actual = Challenge92.ValidatePIN(pin);

            //Assert
            Assert.AreEqual(actual, expected);
        }
Example #2
0
        public void TestMethod15()
        {
            //Arrange
            string pin      = "123456";
            bool   expected = true;
            //Act
            bool actual = Challenge92.ValidatePIN(pin);

            //Assert
            Assert.AreEqual(actual, expected);
        }