Exemplo n.º 1
0
        public void WhenTheyAreNt()
        {
            string c      = "Voldemort";
            bool   output = AreTheyAnagram.SoAreTheyAnagram(defaultName, c);

            Assert.AreEqual(false, output);
        }
Exemplo n.º 2
0
        public void WhenTheyAre()
        {
            string b      = "DoorThy";
            bool   output = AreTheyAnagram.SoAreTheyAnagram(defaultName, b);

            Assert.AreEqual(true, output);
        }