Searched refs:groupRegexp (Results 1 – 1 of 1) sorted by relevance
252 ITestNGMethod[] methods, String groupRegexp) in findMethodsThatBelongToGroup() argument254 ITestNGMethod[] found = findMethodsThatBelongToGroup(methods, groupRegexp); in findMethodsThatBelongToGroup()257 method.setMissingGroup(groupRegexp); in findMethodsThatBelongToGroup()271 …ed static ITestNGMethod[] findMethodsThatBelongToGroup(ITestNGMethod[] methods, String groupRegexp) in findMethodsThatBelongToGroup() argument274 final Pattern pattern = getPattern(groupRegexp); in findMethodsThatBelongToGroup()298 private static Pattern getPattern(String groupRegexp) { in getPattern() argument299 Pattern groupPattern = PATTERN_CACHE.get(groupRegexp); in getPattern()301 groupPattern = Pattern.compile(groupRegexp); in getPattern()302 PATTERN_CACHE.put(groupRegexp, groupPattern); in getPattern()