public void VerbFilter_ShouldNotExclude_WhenVerbWord(string word)
 {
     verbFilter.ShouldExclude(word).Should().BeFalse();
 }
 public void NounVerbFilter_ShouldNotExclude_WhenNounOrVerbWord(string word)
 {
     nounAndVerbFilter.ShouldExclude(word).Should().BeFalse();
 }
 public void NounFilter_ShouldNotExclude_WhenNounWord(string word)
 {
     nounFilter.ShouldExclude(word).Should().BeFalse();
 }