public void RunWordCounter() { Word = Dissect(Word.ToLower()); Sentence = Dissect(Sentence.ToLower()); Count(); }
public void WordCounterConstructor_CreatesInstanceOfWordCounter_Type() { Word testWordCounter = new Word("word", "sentence"); Assert.AreEqual(typeof(Word), testWordCounter.GetType()); }