Lines Matching full:xml
7 import xml.etree.ElementTree as ET
8 import xml.dom.minidom
20 Based on the understanding of what Jenkins can parse for JUnit XML files.
22 <?xml version="1.0" encoding="utf-8"?>
119 Builds the XML document for the JUnit test suite.
122 @return: XML document with unicode string elements
252 Returns the string representation of the JUnit XML document.
266 Writes the JUnit XML document to a file.
277 Returns the string representation of the JUnit XML document.
307 xml_string = xml.dom.minidom.parseString(xml_string)
318 Writes the JUnit XML document to a file.
327 Removes any illegal unicode characters from the given XML string.
329 …@see: http://stackoverflow.com/questions/1707890/fast-way-to-filter-illegal-xml-unicode-chars-in-p…