Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/xml/
DLaunchSuite.java280 suiteBuffer.addEmptyElement("include", methodAttrs); in initContentBuffer()
287 suiteBuffer.addEmptyElement("class", classAttrs); in initContentBuffer()
334 suiteBuffer.addEmptyElement("include", methodAttrs); in initContentBuffer()
341 suiteBuffer.addEmptyElement("class", classAttrs); in initContentBuffer()
406 suiteBuffer.addEmptyElement("include", includeAttrs); in initContentBuffer()
420 suiteBuffer.addEmptyElement("package", packageAttrs); in initContentBuffer()
431 suiteBuffer.addEmptyElement("class", classAttrs); in initContentBuffer()
DXmlRun.java20 xsb.addEmptyElement("include", "name", s); in toXml()
23 xsb.addEmptyElement("exclude", "name", s); in toXml()
DXmlPackage.java110 xsb.addEmptyElement("package", p); in toXml()
117 xsb.addEmptyElement("include", includeProp); in toXml()
122 xsb.addEmptyElement("exclude", excludeProp); in toXml()
DXmlUtils.java27 xsb.addEmptyElement("parameter", paramProps); // BUGFIX: TESTNG-27 in dumpParameters()
DXmlDefine.java30 xsb.addEmptyElement("include", "name", s); in toXml()
DXmlDependencies.java31 xsb.addEmptyElement("include", "name", entry.getKey(), "depends-on", entry.getValue()); in toXml()
DXmlClass.java177 xsb.addEmptyElement("exclude", p); in toXml()
186 xsb.addEmptyElement("class", prop); in toXml()
DXmlSuite.java505 xsb.addEmptyElement("listener", listenerProps); in toXml()
540 xsb.addEmptyElement("suite-file", prop); in toXml()
551 xsb.addEmptyElement("include", "name", g); in toXml()
554 xsb.addEmptyElement("exclude", "name", g); in toXml()
DXmlTest.java517 xsb.addEmptyElement("include", includeProps); in toXml()
531 xsb.addEmptyElement("include", includeProps); in toXml()
538 xsb.addEmptyElement("exclude", excludeProps); in toXml()
548 xsb.addEmptyElement("group", "name", entry.getKey(), "depends-on", entry.getValue()); in toXml()
DXmlMethodSelector.java101 xsb.addEmptyElement("selector-class", clsProp); in toXml()
DXmlInclude.java76 xsb.addEmptyElement("include", p); in toXml()
/external/testng/src/main/java/org/testng/reporters/
DXMLStringBuffer.java268 public void addEmptyElement(String tagName) { in addEmptyElement() method in XMLStringBuffer
269 addEmptyElement(tagName, (Properties) null); in addEmptyElement()
277 public void addEmptyElement(String tagName, @Nullable Properties attributes) { in addEmptyElement() method in XMLStringBuffer
283 public void addEmptyElement(String tagName, String... attributes) { in addEmptyElement() method in XMLStringBuffer
284 addEmptyElement(tagName, createProperties(attributes)); in addEmptyElement()
DJUnitXMLReporter.java224 doc.addEmptyElement(XMLConstants.TESTCASE, attrs); in createElement()
242 doc.addEmptyElement(XMLConstants.FAILURE); // THIS IS AN ERROR in createFailureElement()
247 doc.addEmptyElement("skipped"); in createSkipElement()
DXMLSuiteResultWriter.java100 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_TEST, attrs); in referenceSuiteResult()
263 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_PARAM_VALUE, valueAttrs); in addParameter()
330 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_ATTRIBUTE, attributeAttrs); in addTestResultAttributes()
DJqReporter.java149 xsb.addEmptyElement("img", "src", getStatusImage(tagClass)); in generateTests()
160 xsb.addEmptyElement("img", "src", getImage(tagClass)); in generateTests()
DXMLReporter.java109 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_SUITE, attrs); in referenceSuite()
139 xmlBuffer.addEmptyElement(XMLReporterConfig.TAG_METHOD, methodAttrs); in writeSuiteGroups()
DJUnitReportReporter.java154 xsb.addEmptyElement("testcase", testTag.properties); in generateReport()
/external/testng/src/main/java/org/testng/reporters/jq/
DGroupPanel.java32 xsb.addEmptyElement("br"); in getContent()
37 xsb.addEmptyElement("br"); in getContent()
DBannerPanel.java15 xsb.addEmptyElement("br"); in generate()
DIgnoredMethodsPanel.java41 xsb.addEmptyElement("br"); in getContent()
DNavigatorPanel.java234 xsb.addEmptyElement("img", "src", image, "width", "3%"); in generateMethodList()
241 xsb.addEmptyElement("br"); in generateMethodList()
DSuitePanel.java52 xsb.addEmptyElement("img", "src", Model.getImage(status)); in generateClassPanel()