class documentation

See module docstring.

Method __init__ Undocumented
Method addError Queue error adding.
Method addExpectedFailure Queue adding an expected failure.
Method addFailure Queue adding a failure.
Method addSkip Queue adding a skip.
Method addSuccess Queue adding a success.
Method addUnexpectedSuccess Queue adding an unexpected success.
Method startTest Queue test starting.
Method stopTest Queue stopping the test, then unroll the queue.
Instance Variable running Undocumented
def __init__(self, original): (source)

Undocumented

def addError(self, test, error): (source)

Queue error adding.

Parameters
test:ITestCaseUndocumented
error:ReporterFailureUndocumented
def addExpectedFailure(self, test, error, todo=None): (source)

Queue adding an expected failure.

Parameters
test:ITestCaseUndocumented
error:ReporterFailureUndocumented
todo:Optional[str]Undocumented
def addFailure(self, test, fail): (source)

Queue adding a failure.

Parameters
test:ITestCaseUndocumented
fail:ReporterFailureUndocumented
def addSkip(self, test, reason): (source)

Queue adding a skip.

def addSuccess(self, test): (source)

Queue adding a success.

def addUnexpectedSuccess(self, test, todo=None): (source)

Queue adding an unexpected success.

def startTest(self, test): (source)

Queue test starting.

def stopTest(self, test): (source)

Queue stopping the test, then unroll the queue.

running: dict = (source)

Undocumented