コード例 #1
0
 public void NegativeMatchReturnsNull(TokenMatcher matcher, string input)
 {
     matcher.GetTokens(input).ShouldBeEmpty();
 }
コード例 #2
0
 public void PositiveMatchReturnsTokens(TokenMatcher matcher, string input, Token[] expected)
 {
     matcher.GetTokens(input).ShouldBe(expected);
 }