public void TestMethod7() { //Arrange string pin = "@234"; bool expected = false; //Act bool actual = Challenge92.ValidatePIN(pin); //Assert Assert.AreEqual(actual, expected); }
public void TestMethod15() { //Arrange string pin = "123456"; bool expected = true; //Act bool actual = Challenge92.ValidatePIN(pin); //Assert Assert.AreEqual(actual, expected); }