Example #1
0
        public void GetInputWord_GetsInput_ReturnString()
        {
            //Arrange
            WordCount newWordCount = new WordCount("My name is Frank", "Frank");
            string    testString   = "My name is Frank";
            //Act
            string testInput = newWordCount.GetInputWord();

            //Assert
            Assert.AreEqual(testString, testInput);
        }