Exemple #1
0
 public void Match_WithSentenceStringAndUnknownWordPattern_ExpectsFalse()
 => False(SENTENCE.Match(WORD));
Exemple #2
0
 public void Match_WithSentenceStringAndFirstWordPattern_ExpectsTrue()
 => True(SENTENCE.Match(WORD_FIRST));
Exemple #3
0
 public void Match_WithSentenceStringAndSamePattern_ExpectsTrue()
 => True(SENTENCE.Match(SENTENCE));
Exemple #4
0
 public void Match_WithSentenceStringAndEmptyPattern_ExpectsTrue()
 => True(SENTENCE.Match(EMPTY));