public void ScrabbleConstructor_CreatesInstanceScrabble_Scrabble() { string word = "hello"; Scrabble newWord = new Scrabble("Hello"); Assert.AreEqual(typeof(Scrabble), newWord.GetType()); Assert.AreEqual(word, newWord.Word); }
public void ScrabbleInstance_InstanceOfScrabble_ScoreTotal() { Scrabble instanceOfScrabble = new Scrabble(); Assert.AreEqual(typeof(Scrabble), instanceOfScrabble.GetType()); }