Simple reporter that prints a single character for each test as it runs, along with the standard Trial summary text.

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.

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 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 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.
def addSuccess(self, test): (source)

Report that the given test succeeded.

def addError(self, *args): (source)

Called when a test raises an error. If realtime is set, then it prints the error to the stream.

ParameterstestITestCase that raised the error.
errorfailure.Failure containing the error.
def addFailure(self, *args): (source)

Called when a test fails. If realtime is set, then it prints the error to the stream.

ParameterstestITestCase that failed.
failfailure.Failure containing the error.
def addSkip(self, *args): (source)

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.

def addExpectedFailure(self, *args): (source)

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.

def addUnexpectedSuccess(self, *args): (source)

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.

API Documentation for Twisted, generated by pydoctor at 2015-09-04 15:29:41.