Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/internal/
DMethodGroupsHelper.java159 Map<ITestNGMethod, ITestNGMethod> runningMethods = Maps.newHashMap(); in findGroupTransitiveClosure() local
161 runningMethods.put(m, m); in findGroupTransitiveClosure()
189 if (! runningMethods.containsKey(thisMethod)) { in findGroupTransitiveClosure()
190 runningMethods.put(thisMethod, thisMethod); in findGroupTransitiveClosure()
204 if (thisMethod != null && ! runningMethods.containsKey(thisMethod)) { in findGroupTransitiveClosure()
205 runningMethods.put(thisMethod, thisMethod); in findGroupTransitiveClosure()
221 outMethods.addAll(runningMethods.keySet()); in findGroupTransitiveClosure()