示例#1
0
 public void DecimalNumbersAreRecognized(string input, bool isMatch)
 {
     AssertParser.FitsTheory(Numerics.Decimal, input, isMatch);
 }
示例#2
0
 public void HexDigitsAreRecognized(string input, bool isMatch)
 {
     AssertParser.FitsTheory(Numerics.HexDigits, input, isMatch);
 }
示例#3
0
 // A number of cases allowed by the spec aren't yet covered, here.
 public void IsoDateTimesAreRecognized(string input, bool isMatch)
 {
     AssertParser.FitsTheory(Instant.Iso8601DateTime, input, isMatch);
 }
示例#4
0
 public void IntegersAreRecognized(string input, bool isMatch)
 {
     AssertParser.FitsTheory(Numerics.Integer, input, isMatch);
 }
示例#5
0
 public void CStyleIdentifiersAreRecognized(string input, bool isMatch)
 {
     AssertParser.FitsTheory(Identifier.CStyle, input, isMatch);
 }