Class t.t.r.MinimalReporter(Reporter):

Part of twisted.trial.reporter View Source View In Hierarchy

A minimalist reporter that prints only a summary of the test result, in the form of (timeTaken, #tests, #tests, #errors, #failures, #skips).
Method startTest This must be called before the given test is commenced.
Method printErrors Print all of the non-success results in full to the stream.
Method printSummary Print a line summarising the test results to the stream.

Inherited from Reporter:

Method __init__ Undocumented
Method addFailure Report a failed assertion for the given test.
Method addError Report an error that occurred while running the given test.
Method write Undocumented
Method writeln Undocumented
Method upDownError called when an error occurs in a setUp* or tearDown* method
Method cleanupErrors Report an error that occurred during the cleanup between tests.
Method _trimFrames Undocumented
Method _formatFailureTraceback Undocumented
Method _printResults Undocumented
Method _printExpectedFailure Undocumented
Method _printUnexpectedSuccess Undocumented

Inherited from TestResult (via Reporter):

Method __repr__ Undocumented
Method _getTime Undocumented
Method stopTest This must be called after the given test is completed.
Method addSkip Report that the given test was skipped.
Method addUnexpectedSuccess Report that the given test succeeded against expectations.
Method addExpectedFailure Report that the given test succeeded against expectations.
Method addSuccess Report that the given test succeeded.
Method startSuite Undocumented
Method endSuite Undocumented
def startTest(self, test): (source)
This must be called before the given test is commenced.
Parameterstest(type: pyunit.TestCase )
def printErrors(self): (source)
Print all of the non-success results in full to the stream.
def printSummary(self): (source)
Print a line summarising the test results to the stream.
API Documentation for twisted, generated by pydoctor.