I report results from a run of a test suite.
In all lists below, 'Results' are either a
twisted.python.failure.Failure object, an exc_info tuple, or a
string.
Instance Variable Summary |
bool |
debugger
- Run the debugger when encountering a failing test. |
List of (testClass, method, Results) tuples. |
errors
- Tests which have encountered an error. |
List of (testClass, method, Results) tuples. |
expectedFailures
- Tests which failed but are marked as 'todo' |
int |
expectedTests
- The number of tests I expect to run. |
List of (testClass, method, Results) tuples. |
failures
- Tests which have failed. |
List of (moduleName, exception) tuples. |
imports
- Import errors encountered while assembling the test suite. |
int |
numTests
- The number of tests I have reports for. |
List of (testClass, method, Results) tuples. |
skips
- Tests which have been skipped. |
List of (testClass, method, Results) tuples. |
unexpectedSuccesses
- Tests which passed but are marked as 'todo' |