public void DecimalNumbersAreRecognized(string input, bool isMatch) { AssertParser.FitsTheory(Numerics.Decimal, input, isMatch); }
public void HexDigitsAreRecognized(string input, bool isMatch) { AssertParser.FitsTheory(Numerics.HexDigits, input, isMatch); }
// 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); }
public void IntegersAreRecognized(string input, bool isMatch) { AssertParser.FitsTheory(Numerics.Integer, input, isMatch); }
public void CStyleIdentifiersAreRecognized(string input, bool isMatch) { AssertParser.FitsTheory(Identifier.CStyle, input, isMatch); }