(String regex, String string)
| 7 | } |
| 8 | |
| 9 | private static Matcher getMatcher(String regex, String string) { |
| 10 | return Pattern.compile(regex).matcher(string); |
| 11 | } |
| 12 | |
| 13 | private static void expectMatch(String regex, String string) { |
| 14 | expect(getMatcher(regex, string).matches()); |
no test coverage detected