public void RunTest05() { OneAway test = new OneAway("payles", "pale"); var result = test.Run(); Assert.IsFalse(result); }
public void RunTest03() { OneAway test = new OneAway("pale", "bale"); var result = test.Run(); Assert.IsTrue(result); }
public void OneAwayTest(string inputOne, string inputTwo, bool expectedResult) { var result = OneAway.Run(inputOne, inputTwo); Assert.Equal(expectedResult, result); }