public void GetSentence_ReturnSentence_string() { //Arrange string phrase = "Hello Epicodus!"; WordFinder newWordFinder = new WordFinder(phrase, ""); //action string result = newWordFinder.GetSentence(); //Assert Assert.AreEqual(phrase, result); }