Home
last modified time | relevance | path

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

/external/deqp/scripts/
Dtestset.py125 def createGroups (results, groupNames): function
274 groups = createGroups(results, readGroupList(options.groups_file))
279 groups = createGroups(results, readGroupList(options.groups_file))
/external/testng/src/main/java/org/testng/
DTestRunner.java388 m_xmlMethodSelector.setIncludedGroups(createGroups(m_xmlTest.getIncludedGroups())); in initRunInfo()
389 m_xmlMethodSelector.setExcludedGroups(createGroups(m_xmlTest.getExcludedGroups())); in initRunInfo()
580 private Map<String, String> createGroups(List<String> groups) { in createGroups() method in TestRunner
581 return createGroups(groups.toArray(new String[groups.size()])); in createGroups()
584 private Map<String, String> createGroups(String[] groups) { in createGroups() method in TestRunner