class documentation

class XMLTestRunner(object):

Constructor: XMLTestRunner(stream)

View In Hierarchy

A test runner that stores results in XML format compatible with JUnit.

XMLTestRunner(stream=None) -> XML test runner

The XML file is written to the supplied stream. If stream is None, the results are stored in a file called TEST-<module>.<class>.xml in the current working directory (if not overridden with the path property), where <module> and <class> are the module and class name of the test class.

Method __init__ Undocumented
Method run Run the given test case or test suite.
Class Variable path Undocumented
Method _set_path Undocumented
Instance Variable _path Undocumented
Instance Variable _stream Undocumented
def __init__(self, stream=None):

Undocumented

def run(self, test):

Run the given test case or test suite.

path =

Undocumented

def _set_path(self, path):

Undocumented

_path =

Undocumented

_stream =

Undocumented