class documentation

Test the class skipping features of twisted.trial.unittest.TestCase.

Method setUp Setup our test case
Method test_counting Skipped test methods still contribute to the total test count.
Method test_reasons Test methods which raise unittest.SkipTest or have their skip attribute set to something are skipped.
Method test_results Skipped test methods don't cause wasSuccessful to return False, nor do they contribute to the errors or failures of the reporter, or to the count of successes. They do, however, add elements to the reporter's ...
Method test_setUpRan The setUp method is not called if the class is set to skip.

Inherited from ResultsTestMixin:

Method assertCount Asserts that the test count is plausible
Method loadSuite Load tests from the given test case class and create a new reporter to use for running it.
Method test_setUp test the setup
Instance Variable loader Undocumented
Instance Variable reporter Undocumented
Instance Variable suite Undocumented
def setUp(self): (source)

Setup our test case

def test_counting(self): (source)

Skipped test methods still contribute to the total test count.

def test_reasons(self): (source)

Test methods which raise unittest.SkipTest or have their skip attribute set to something are skipped.

def test_results(self): (source)

Skipped test methods don't cause wasSuccessful to return False, nor do they contribute to the errors or failures of the reporter, or to the count of successes. They do, however, add elements to the reporter's skips list.

def test_setUpRan(self): (source)

The setUp method is not called if the class is set to skip.