Ejemplo n.º 1
0
        public void Constructor_CreatesWord_Word()
        {
            Scrabble newScrabble = new Scrabble();

            Scrabble.ScrabbleGame("Word");
            Assert.AreEqual("word", Scrabble.Input);
        }
Ejemplo n.º 2
0
        public void ScoreCheck_WillOutPutCorrectScoreForWordInput_Score()
        {
            Scrabble newScrabble = new Scrabble();

            Scrabble.ScrabbleGame("Word");
            Scrabble.CheckScore();
            Assert.AreEqual(8, Scrabble.Score);
        }