public void TestInvalidNewline( [Values(' ')] char input) { Assert.Null(NewlineMatcher.Match(input)); }
public void TestValidNewline( [Values('\n', '\r')] char input) { Assert.NotNull(NewlineMatcher.Match(input)); }