public void TestMethod6() { //Arrange string str = "*****@*****.**"; bool expected = true; //Act bool actual = Challenge123.ValidateEmail(str); //Assert Assert.AreEqual(expected, actual); }
public void TestMethod7() { //Arrange string str = "hello@email"; bool expected = false; //Act bool actual = Challenge123.ValidateEmail(str); //Assert Assert.AreEqual(expected, actual); }
public void TestMethod3() { //Arrange string str = "*****@*****.**"; bool expected = true; //Act bool actual = Challenge123.ValidateEmail(str); //Assert Assert.AreEqual(expected, actual); }