Esempio n. 1
0
        public void GetAll_Anagram()
        {
            Word   testWord = new Word();
            string word     = "cat";
            string result   = testWord.Alphabetize(word);

            Assert.AreEqual("act", result);
        }