public void HowManyMatches_DoesWordMatchString_True()
        {
            //Arrange
            string        inputString = "I really dont like the documentaion on the last class";
            string        inputWord   = "last";
            RepeatCounter newCounter  = new RepeatCounter();

            //Act
            newCounter.SetUserSentence(inputString);
            newCounter.SetUserWord(inputWord);
            int wordMatches = newCounter.CountedWord();

            //Assert
            Assert.AreEqual(1, wordMatches);
        }