Ejemplo n.º 1
0
 public void TestValidWhitespace(
     [Values(' ', '\t', '\f', '\v')] char input)
 {
     Assert.NotNull(WhitespaceMatcher.Match(input));
 }
Ejemplo n.º 2
0
 public void TestInvalidWhitespace(
     [Values('\n', '\r')] char input)
 {
     Assert.Null(WhitespaceMatcher.Match(input));
 }