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