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