public void NegativeMatchReturnsNull(TokenMatcher matcher, string input)
 {
     matcher.GetTokens(input).ShouldBeEmpty();
 }
 public void PositiveMatchReturnsTokens(TokenMatcher matcher, string input, Token[] expected)
 {
     matcher.GetTokens(input).ShouldBe(expected);
 }