Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/internal/
DMethodGroupsHelper.java252 ITestNGMethod[] methods, String groupRegexp) in findMethodsThatBelongToGroup() argument
254 ITestNGMethod[] found = findMethodsThatBelongToGroup(methods, groupRegexp); in findMethodsThatBelongToGroup()
257 method.setMissingGroup(groupRegexp); in findMethodsThatBelongToGroup()
271 …ed static ITestNGMethod[] findMethodsThatBelongToGroup(ITestNGMethod[] methods, String groupRegexp) in findMethodsThatBelongToGroup() argument
274 final Pattern pattern = getPattern(groupRegexp); in findMethodsThatBelongToGroup()
298 private static Pattern getPattern(String groupRegexp) { in getPattern() argument
299 Pattern groupPattern = PATTERN_CACHE.get(groupRegexp); in getPattern()
301 groupPattern = Pattern.compile(groupRegexp); in getPattern()
302 PATTERN_CACHE.put(groupRegexp, groupPattern); in getPattern()