public void IsWordEmptyString_ReturnTrueIfTheWordStringDoesntContainAnyLetters_True() { Scrabble newWord = new Scrabble(""); bool result = newWord.IsWordEmptyString(); Assert.AreEqual(true, result); }