class documentation

class TestHolder:

Known subclasses: twisted.trial.runner.ErrorHolder

Constructor: TestHolder(description)

Implements interfaces: twisted.trial.itrial.ITestCase

View In Hierarchy

Placeholder for a TestCase inside a reporter. As far as a TestResult is concerned, this looks exactly like a unit test.

Method __call__ Run the test. Should always do exactly the same thing as run().
Method __init__ No summary
Method countTestCases Return the number of tests in this test case. Usually 1.
Method id Return a unique identifier for the test, usually the fully-qualified Python name.
Method run This test is just a placeholder. Run the test successfully.
Method shortDescription Return a short description of the test.
Class Variable failureException The exception class that is raised by failed assertions
Instance Variable description Undocumented
def __call__(self, result):

Run the test. Should always do exactly the same thing as run().

def __init__(self, description):
Parameters
descriptionA string to be displayed TestResult.
def countTestCases(self):

Return the number of tests in this test case. Usually 1.

def id(self):

Return a unique identifier for the test, usually the fully-qualified Python name.

def run(self, result):

This test is just a placeholder. Run the test successfully.

Parameters
result:twisted.trial.itrial.IReporter.The TestResult to store the results in.
def shortDescription(self):

Return a short description of the test.

failureException =

The exception class that is raised by failed assertions

description =

Undocumented