Searched refs:npeMatcher (Results 1 – 1 of 1) sorted by relevance
3653 Matcher npeMatcher = Pattern.compile("(?<gname>abc)(def)").matcher("abcdef"); in namedGroupCaptureTest() local3654 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()