public void Constructor_CreatesWord_Word() { Scrabble newScrabble = new Scrabble(); Scrabble.ScrabbleGame("Word"); Assert.AreEqual("word", Scrabble.Input); }
public void ScoreCheck_WillOutPutCorrectScoreForWordInput_Score() { Scrabble newScrabble = new Scrabble(); Scrabble.ScrabbleGame("Word"); Scrabble.CheckScore(); Assert.AreEqual(8, Scrabble.Score); }