Пример #1
0
 public void SimpleSentenceWithoutDotDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SimpleSentenceWithoutDotTest(dictStrategy);
 }
Пример #2
0
 public void SentenceWithDifferentSpacingDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SentenceWithDifferentSpacingTest(dictStrategy);
 }
Пример #3
0
 public void SentenceWithSeparatorsOnlyDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SentenceWithSeparatorsOnlyTest(dictStrategy);
 }
Пример #4
0
 public void SentenceWithDifferentBracketsDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SentenceWithDifferentBracketsTest(dictStrategy);
 }
Пример #5
0
 public void SentenceWithDifferentSeparatorsDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SentenceWithDifferentSeparatorsTest(dictStrategy);
 }
Пример #6
0
 public void SentenceDifferentCaseDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     SentenceDifferentCaseTest(dictStrategy);
 }
 public void WhitespaceSentenceDictStrategyTest1()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     WhitespaceSentenceTest1(dictStrategy);
 }
 public void NullSentenceDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     NullSentenceTest(dictStrategy);
 }
 public void MoreThanOneSentenceDictStrategyTest3()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     MoreThanOneSentenceTest3(dictStrategy);
 }
 public void EmptySentenceDictStrategyTest()
 {
     var dictStrategy = new WordsCounterDictStrategy();
     EmptySentenceTest(dictStrategy);
 }