class documentation

class StubErrorReporter:

View In Hierarchy

A subset of twisted.trial.itrial.IReporter which records addError calls.

Method __init__ Undocumented
Method addError Record parameters in self.errors.
Instance Variable errors List of two-tuples of (test, error) which were passed to addError.
def __init__(self):

Undocumented

def addError(self, test: object, error: Failure):

Record parameters in self.errors.

errors: list[tuple[object, Failure]] =

List of two-tuples of (test, error) which were passed to addError.