Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/
DTestRunner.java564 List<String> unfinishedGroups, in collectGroups() argument
573 unfinishedGroups.add(sg); in collectGroups()
595 List<String> unfinishedGroups = Lists.newArrayList(); in createGroups() local
598 collectGroups(groups, unfinishedGroups, result); in createGroups()
601 while (unfinishedGroups.size() > 0) { in createGroups()
602 String[] uGroups = unfinishedGroups.toArray(new String[unfinishedGroups.size()]); in createGroups()
603 unfinishedGroups = Lists.newArrayList(); in createGroups()
604 collectGroups(uGroups, unfinishedGroups, result); in createGroups()