twisted.trial.reporter._ExitWrapper(TestResultDecorator) class documentationtwisted.trial.reporter
          View Source
          (View In Hierarchy)
        
      Implements interfaces: twisted.trial.itrial.IReporter
A wrapper for a reporter that causes the reporter to stop after unsuccessful tests.
| Method | addError | Record that a test has raised an unexpected exception. | 
| Method | addFailure | Record that a test has failed with the given failure. | 
Inherited from TestResultDecorator:
| Instance Variable | _originalReporter | The wrapped instance of reporter. (type: A provider of itrial.IReporter) | 
  
Record that a test has raised an unexpected exception.
| Parameters | test | The test that has raised an error. | 
| error | The error that the test raised. It will either be a three-tuple in the 
style of sys.exc_info() or a Failure object. |