Ejemplo n.º 1
0
        public void ScrabbleCalc_GetScore_ScoreOfWord()
        {
            Scrabble word   = new Scrabble("hello");
            string   result = word.ScrabbleScore();

            Assert.AreEqual("8", result);
        }
Ejemplo n.º 2
0
        public void ScrabbleCalc_GetScore_NotALetter()
        {
            Scrabble word   = new Scrabble("hello1");
            string   result = word.ScrabbleScore();

            Assert.AreEqual("Please only use one word, with letters only.", result);
        }