twisted.trial.reporter.MinimalReporter(Reporter) class documentationtwisted.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 | _printErrors | Don't print a detailed summary of errors. We only care about the counts. | 
| Method | _printSummary | Print out a one-line summary of the form: '%(runtime) %(number_of_tests) %(number_of_tests) %(num_errors) %(num_failures) %(num_skips)' | 
Inherited from TestResult (via Reporter):
| Instance Variable | successes | count the number of successes achieved by the test run. (type: int) | 
  
| Method | __repr__ | 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 failed, and was expected to do so. | 
| Method | addSuccess | Report that the given test succeeded. | 
| 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 | 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 failed, and was expected to do so. | 
| Method | addSuccess | Report that the given test succeeded. | 
| 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. | 
  
Don't print a detailed summary of errors. We only care about the counts.
Print out a one-line summary of the form: '%(runtime) %(number_of_tests) %(number_of_tests) %(num_errors) %(num_failures) %(num_skips)'