コード例 #1
0
        public void Constructor_CreatesWord_Word()
        {
            Scrabble newScrabble = new Scrabble();

            Scrabble.ScrabbleGame("Word");
            Assert.AreEqual("word", Scrabble.Input);
        }
コード例 #2
0
        public void ScoreCheck_WillOutPutCorrectScoreForWordInput_Score()
        {
            Scrabble newScrabble = new Scrabble();

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