public void GetTheWordCount_ReturnTheWordCount_Int()
        {
            //Arrange
            WordCounter newWordCounter = new WordCounter("cat", "cat and cat");
            string      paragraph      = newWordCounter.GetParaGraph();
            string      word           = newWordCounter.GetWordToCount();

            string[] test = newWordCounter.StringToArray();

            //Act
            int result = newWordCounter.GetResults();

            //Assert
            Assert.AreEqual(result, 2);
        }
        public void RunNoArgConstructor_ReturnTheWordCount_Int()
        {
            //Arrange
            WordCounter newWordCounter = new WordCounter();

            //Act
            newWordCounter.SetWordToCount("blue,");
            newWordCounter.SetParagraph("the sky is blue, the oceans is blue, the dog is not blue");
            string paragraph = newWordCounter.GetParaGraph();
            string word      = newWordCounter.GetWordToCount();

            string[] test   = newWordCounter.StringToArray();
            int      result = newWordCounter.GetResults();

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