class documentation
class _ExitWrapper(TestResultDecorator): (source)
Implements interfaces: twisted.trial.itrial.IReporter
A wrapper for a reporter that causes the reporter to stop after unsuccessful tests.
Method | add |
Record that a test has raised an unexpected exception. |
Method | add |
Record that a test has failed with the given failure. |
Instance Variable | should |
A boolean indicating that this reporter would like the test run to stop. |
Inherited from TestResultDecorator
:
Instance Variable | _original |
The wrapped instance of reporter. |
Record that a test has raised an unexpected exception.
Parameters | |
*args | Undocumented |
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. |
**kwargs | Undocumented |
Record that a test has failed with the given failure.
Parameters | |
*args | Undocumented |
test | The test that has failed. |
failure | The failure that the test failed with. It will either be a three-tuple in the style of sys.exc_info() or a Failure object. |
**kwargs | Undocumented |