public void WordLengthSix_ReturnsWordOfExpectedLength() { WordRepository repository = new WordRepository(); string randomWord = repository.GetRandomWord(6); Debug.WriteLine(randomWord); Assert.AreEqual(6, randomWord.Length, $"Unexpected Random word '{randomWord}'"); }