Ejemplo n.º 1
0
 public void SimpleSentenceWithDotLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SimpleSentenceWithDotTest(linqStrategy);
 }
Ejemplo n.º 2
0
 public void SentenceWithDifferentSpacingLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentSpacingTest(linqStrategy);
 }
Ejemplo n.º 3
0
 public void SentenceWithSeparatorsOnlyLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithSeparatorsOnlyTest(linqStrategy);
 }
Ejemplo n.º 4
0
 public void SentenceWithDifferentBracketsLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentBracketsTest(linqStrategy);
 }
Ejemplo n.º 5
0
 public void SentenceWithDifferentSeparatorsLinqStrategyTest()
 {
     var linqStrategy = new WordsCounterLinqStrategy();
     SentenceWithDifferentSeparatorsTest(linqStrategy);
 }
Ejemplo n.º 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);
 }