public void ScrabbleConstructor_GetSetWord_ReturnWord() { Score testScore = new Score("word"); Assert.Equal("word", testScore.GetInput()); }
public void GetTotalScore_ReturnTotalScore_Score() { Score testScore = new Score("word"); Assert.Equal(8, testScore.GetTotalScore()); }