Exemple #1
0
        public void GetCreateLetterScore_CreatesAndGetsLetterScore_True()
        {
            ScrabbleScore newGame = new ScrabbleScore();

            newGame.CreateLetterScores();
            Assert.AreEqual(1, newGame.GetLetterScore('n'));
        }