Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/internal/
DOverrideProcessor.java37 t.getExcludedGroups().clear(); in process()
38 t.getExcludedGroups().addAll(Arrays.asList(m_excludedGroups)); in process()
DYaml.java144 if (t.getExcludedGroups().size() > 0) { in toYaml()
146 .append(Utils.join(t.getExcludedGroups(), ",")) in toYaml()
DXmlMethodSelector.java263 public Map<String, String> getExcludedGroups() { in getExcludedGroups() method in XmlMethodSelector
/external/testng/src/main/java/org/testng/
DITestContext.java72 public String[] getExcludedGroups(); in getExcludedGroups() method
DTestRunner.java389 m_xmlMethodSelector.setExcludedGroups(createGroups(m_xmlTest.getExcludedGroups())); in initRunInfo()
1218 + "] excluded groups:[" + mapToString(m_xmlMethodSelector.getExcludedGroups()) + "]"); in logStart()
1297 public String[] getExcludedGroups() { in getExcludedGroups() method in TestRunner
1298 Map<String, String> eg= m_xmlMethodSelector.getExcludedGroups(); in getExcludedGroups()
/external/testng/src/test/java/test/xml/
DXmlVerifyTest.java39 test.getExcludedGroups().add("fast"); in simple()
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter2.java165 writeTableData(testResult.getExcludedGroups()); in writeSuiteSummary()
643 excludedGroups = formatGroups(context.getExcludedGroups()); in TestResult()
762 public String getExcludedGroups() { in getExcludedGroups() method in EmailableReporter2.TestResult
DFailedReporter.java170 xmlTest.setExcludedGroups(srcXmlTest.getExcludedGroups()); in createXmlTest()
DTestHTMLReporter.java292 ….append("<td>Excluded groups:</td><td>").append(arrayToString(testContext.getExcludedGroups())).ap… in generateLog()
DEmailableReporter.java389 summaryCell(overview.getExcludedGroups()); in generateSuiteSummaryReport()
/external/testng/src/main/java/org/testng/xml/dom/
DXDom.java322 Assert.assertEquals(s.getExcludedGroups(), Arrays.asList("excludeThisGroup")); in test()
363 Assert.assertEquals(t.getExcludedGroups(), Arrays.asList("excludeThisGroup")); in testNoPackage()
/external/testng/src/main/java/org/testng/remote/
DSuiteDispatcher.java119 tmpTest.setExcludedGroups(test.getExcludedGroups()); in dispatch()
/external/testng/src/main/java/org/testng/xml/
DXmlSuite.java546 List<String> excluded = getExcludedGroups(); in toXml()
619 result.setExcludedGroups(getExcludedGroups()); in clone()
995 public List<String> getExcludedGroups() { in getExcludedGroups() method in XmlSuite
DXmlTest.java222 public List<String> getExcludedGroups() { in getExcludedGroups() method in XmlTest
224 result.addAll(m_suite.getExcludedGroups()); in getExcludedGroups()
651 result.setExcludedGroups(getExcludedGroups()); in clone()
/external/testng/
DCHANGES.txt291 - Don't mutate the value returned by XmlTest#getIncludedGroups and XmlTest#getExcludedGroups.