Exemple #1
0
        public void GetSetTotalScore_GetsSetsTotalScore_True()
        {
            ScrabbleScore newGame = new ScrabbleScore();
            int           score   = 1;

            newGame.SetTotalScore(score);
            Assert.AreEqual(score, newGame.GetTotalScore());
        }