Home
last modified time | relevance | path

Searched refs:npeMatcher (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/util/regex/
DRegExTest.java3653 Matcher npeMatcher = Pattern.compile("(?<gname>abc)(def)").matcher("abcdef"); in namedGroupCaptureTest() local
3654 npeMatcher.find(); in namedGroupCaptureTest()
3655 assertThrows(NullPointerException.class, () -> npeMatcher.group(null)); in namedGroupCaptureTest()
3656 assertThrows(NullPointerException.class, () -> npeMatcher.start(null)); in namedGroupCaptureTest()
3657 assertThrows(NullPointerException.class, () -> npeMatcher.end(null)); in namedGroupCaptureTest()