twisted.trial.reporter.VerboseTextReporter(Reporter)
class documentationtwisted.trial.reporter
View Source
(View In Hierarchy)
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 TestResult (via Reporter):
Instance Variable | successes | count the number of successes achieved by the test run. (type: int ) |
Method | __repr__ | Undocumented |
Method | wasSuccessful | Report whether or not this test suite was successful or not. |
Method | _getTime | Undocumented |
Method | _getFailure | Convert a sys.exc_info() -style tuple to a Failure , if
necessary. |
Inherited from TestResult (via Reporter):
Instance Variable | successes | count the number of successes achieved by the test run. (type: int ) |
Method | __repr__ | Undocumented |
Method | wasSuccessful | Report whether or not this test suite was successful or not. |
Method | _getTime | Undocumented |
Method | _getFailure | Convert a sys.exc_info() -style tuple to a Failure , if
necessary. |
Called when a test begins to run. Records the time when it was first called and resets the warning cache.
Parameters | test | ITestCase |
Called when a test raises an error. If realtime
is set,
then it prints the error to the stream.
Parameters | 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 | 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.
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.
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.
This must be called after the given test is completed.