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);
        }