public void CheckMatch_CheckForWordsMatch_Count()
        {
            //Arrange
            Word testWordCounter = new Word("love", "I love Oregon");
            //Act
            int result = testWordCounter.CheckMatch();

            //Assert
            Assert.AreEqual(1, result);
        }
        public void CheckMatch_CheckForSingleLetterMultipleMatch_Count()
        {
            //Arrange
            Word testWordCounter = new Word("a", "a b a c g");
            //Act
            int result = testWordCounter.CheckMatch();

            //Assert
            Assert.AreEqual(2, result);
        }