svoid test_regexp_integer_maxDigits() { testFunctionValues_twoArgs(func(Pair p) { regexpMatches(regexp_integer_maxDigits(p.a), p.b) }, pair(3, "abc"), false, pair(3, ""), false, pair(3, "1"), true, pair(3, "12"), true, pair(3, "123"), true, pair(3, "1234"), false, pair(2, "43"), true, pair(2, "435"), false); }