예제 #1
0
 public void SimpleSentenceWithDotLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SimpleSentenceWithDotTest(linqStrategy);
 }
예제 #2
0
 public void SentenceWithDifferentSpacingLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentSpacingTest(linqStrategy);
 }
예제 #3
0
 public void SentenceWithSeparatorsOnlyLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithSeparatorsOnlyTest(linqStrategy);
 }
예제 #4
0
 public void SentenceWithDifferentBracketsLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentBracketsTest(linqStrategy);
 }
예제 #5
0
 public void SentenceWithDifferentSeparatorsLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentSeparatorsTest(linqStrategy);
 }
예제 #6
0
 public void SentenceDifferentCaseLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceDifferentCaseTest(linqStrategy);
 }
 public void NullSentenceLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     NullSentenceTest(linqStrategy);
 }
 public void MoreThanOneSentenceLinqStrategyTest3()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     MoreThanOneSentenceTest3(linqStrategy);
 }
 public void EmptySentenceLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     EmptySentenceTest(linqStrategy);
 }
 public void WhitespaceSentenceLinqStrategyTest5()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     WhitespaceSentenceTest5(linqStrategy);
 }