Ejemplo n.º 1
0
        public void RunTest05()
        {
            OneAway test   = new OneAway("payles", "pale");
            var     result = test.Run();

            Assert.IsFalse(result);
        }
Ejemplo n.º 2
0
        public void RunTest03()
        {
            OneAway test   = new OneAway("pale", "bale");
            var     result = test.Run();

            Assert.IsTrue(result);
        }
Ejemplo n.º 3
0
        public void OneAwayTest(string inputOne, string inputTwo, bool expectedResult)
        {
            var result = OneAway.Run(inputOne, inputTwo);

            Assert.Equal(expectedResult, result);
        }