class twisted.trial.reporter.VerboseTextReporter(Reporter): (source)
Known subclasses: twisted.trial.reporter.TimingTextReporter
A verbose reporter that prints the name of each test as it is running.
Each line is printed with the name of the test, followed by the result of that test.
Method | startTest | Called when a test begins to run. Records the time when it was first called and resets the warning cache. |
Method | addSuccess | Report that the given test succeeded. |
Method | addError | Called when a test raises an error. If realtime is set, then it prints the error to the stream. |
Method | addFailure | Called when a test fails. If realtime is set, then it prints the error to the stream. |
Method | addSkip | Report that the given test was skipped. |
Method | addExpectedFailure | Report that the given test failed, and was expected to do so. |
Method | addUnexpectedSuccess | Report that the given test succeeded against expectations. |
Method | stopTest | This must be called after the given test is completed. |
Inherited from Reporter:
Method | __init__ | Undocumented |
Instance Variable | tbformat | Undocumented |
Instance Variable | realtime | Undocumented |
Method | upDownError | Undocumented |
Method | cleanupErrors | Undocumented |
Method | done | Summarize the result of the test run. |
Instance Variable | _startTime | The time when the first test was started. It defaults to None , which means that no test was actually launched. |
Instance Variable | _warningCache | A set of tuples of warning message (file, line, text, category) which have already been written to the output stream during the currently executing test. This is used to avoid writing duplicates of the same warning to the output stream. |
Instance Variable | _publisher | The log publisher which will be observed for warning events. |
Class Variable | _separator | Undocumented |
Class Variable | _doubleSeparator | Undocumented |
Instance Variable | _stream | Undocumented |
Method | _observeWarnings | Observe warning events and write them to self._stream . |
Method | _write | Safely write to the reporter's stream. |
Method | _writeln | Safely write a line to the reporter's stream. Newline is appended to the format string. |
Method | _trimFrames | Trim frames to remove internal paths. |
Method | _formatFailureTraceback | Undocumented |
Method | _groupResults | Group tests together based on their results. |
Method | _printResults | Print a group of errors to the stream. |
Method | _printExpectedFailure | Undocumented |
Method | _printUnexpectedSuccess | Undocumented |
Method | _printErrors | Print all of the non-success results to the stream in full. |
Method | _getSummary | Return a formatted count of tests status results. |
Method | _printSummary | Print a line summarising the test results to the stream. |
Inherited from TestResult (via Reporter):
Instance Variable | successes | count the number of successes achieved by the test run. |
Instance Variable | skips | Undocumented |
Instance Variable | expectedFailures | Undocumented |
Instance Variable | unexpectedSuccesses | Undocumented |
Method | __repr__ | Undocumented |
Method | wasSuccessful | Report whether or not this test suite was successful or not. |
Class Variable | _DEFAULT_TODO | Undocumented |
Instance Variable | _timings | Undocumented |
Method | _getTime | Undocumented |
Method | _getFailure | Convert a sys.exc_info() -style tuple to a Failure , if necessary. |
Instance Variable | _testStarted | Undocumented |
Instance Variable | _lastTime | Undocumented |
Called when a test begins to run. Records the time when it was first called and resets the warning cache.
Parameters | tm | Undocumented |
test | ITestCase |
Report that the given test succeeded.
Parameters | test | Undocumented (type: pyunit.TestCase ) |
Called when a test raises an error. If realtime
is set, then it prints the error to the stream.
Parameters | args | Undocumented |
test | ITestCase that raised the error. | |
error | failure.Failure containing the error. |
Called when a test fails. If realtime
is set, then it prints the error to the stream.
Parameters | args | Undocumented |
test | ITestCase that failed. | |
fail | failure.Failure containing the error. |
Report that the given test was skipped.
In Trial, tests can be 'skipped'. Tests are skipped mostly because there is some platform or configuration issue that prevents them from being run correctly.
Parameters | args | Undocumented |
test | Undocumented (type: pyunit.TestCase ) | |
reason | Undocumented (type: str ) |
Report that the given test failed, and was expected to do so.
In Trial, tests can be marked 'todo'. That is, they are expected to fail.
Parameters | args | Undocumented |
test | Undocumented (type: pyunit.TestCase ) | |
error | Undocumented (type: Failure ) | |
todo | Undocumented (type: unittest.Todo , or None , in which case a default todo message is provided.) |
Report that the given test succeeded against expectations.
In Trial, tests can be marked 'todo'. That is, they are expected to fail. When a test that is expected to fail instead succeeds, it should call this method to report the unexpected success.
Parameters | args | Undocumented |
test | Undocumented (type: pyunit.TestCase ) | |
todo | Undocumented (type: unittest.Todo , or None , in which case a default todo message is provided.) |
This must be called after the given test is completed.
Parameters | test | Undocumented (type: pyunit.TestCase ) |