Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/internal/
DOverrideProcessor.java30 t.getIncludedGroups().clear(); in process()
31 t.getIncludedGroups().addAll(Arrays.asList(m_groups)); in process()
DYaml.java138 if (t.getIncludedGroups().size() > 0) { in toYaml()
140 .append(Utils.join(t.getIncludedGroups(), ",")) in toYaml()
DXmlMethodSelector.java270 public Map<String, String> getIncludedGroups() { in getIncludedGroups() method in XmlMethodSelector
/external/testng/src/test/java/test/dataprovider/
DTestContextSampleTest.java23 String[] groups = ctx.getIncludedGroups(); in createContext()
/external/testng/src/main/java/org/testng/
DITestContext.java67 public String[] getIncludedGroups(); in getIncludedGroups() method
DTestRunner.java388 m_xmlMethodSelector.setIncludedGroups(createGroups(m_xmlTest.getIncludedGroups())); in initRunInfo()
1217 + " included groups:[" + mapToString(m_xmlMethodSelector.getIncludedGroups()) in logStart()
1289 public String[] getIncludedGroups() { in getIncludedGroups() method in TestRunner
1290 Map<String, String> ig= m_xmlMethodSelector.getIncludedGroups(); in getIncludedGroups()
/external/testng/src/main/java/org/testng/xml/
DXmlTest.java127 public List<String> getIncludedGroups() { in getIncludedGroups() method in XmlTest
131 result.addAll(m_suite.getIncludedGroups()); in getIncludedGroups()
135 result.addAll(m_suite.getIncludedGroups()); in getIncludedGroups()
650 result.setIncludedGroups(getIncludedGroups()); in clone()
DXmlSuite.java545 List<String> included = getIncludedGroups(); in toXml()
620 result.setIncludedGroups(getIncludedGroups()); in clone()
964 public List<String> getIncludedGroups() { in getIncludedGroups() method in XmlSuite
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter2.java164 writeTableData(testResult.getIncludedGroups()); in writeSuiteSummary()
642 includedGroups = formatGroups(context.getIncludedGroups()); in TestResult()
758 public String getIncludedGroups() { in getIncludedGroups() method in EmailableReporter2.TestResult
DFailedReporter.java169 xmlTest.setIncludedGroups(srcXmlTest.getIncludedGroups()); in createXmlTest()
DTestHTMLReporter.java290 ….append("<td>Included groups:</td><td>").append(arrayToString(testContext.getIncludedGroups())).ap… in generateLog()
DEmailableReporter.java388 summaryCell(overview.getIncludedGroups()); in generateSuiteSummaryReport()
/external/testng/src/main/java/org/testng/xml/dom/
DXDom.java321 Assert.assertEquals(s.getIncludedGroups(), Arrays.asList("includeThisGroup")); in test()
362 Assert.assertEquals(t.getIncludedGroups(), Arrays.asList("nopackage", "includeThisGroup")); in testNoPackage()
/external/testng/src/main/java/org/testng/remote/
DSuiteDispatcher.java120 tmpTest.setIncludedGroups(test.getIncludedGroups()); in dispatch()
/external/testng/
DCHANGES.txt291 - Don't mutate the value returned by XmlTest#getIncludedGroups and XmlTest#getExcludedGroups.