public void Verify_Negative_Words_Are_Returned()
        {
            //Arrange
            _repository.NegativeWordList = new List <string> {
                "swine", "bad", "nasty", "horrible"
            };

            //Act
            var wordList = _repository.GetNegativeWords();

            //Assert
            Assert.IsNotNull(wordList);
            Assert.IsTrue(wordList.Count > 0, "List is not expected to be empty");
        }