module documentation
(source)

Infrastructure for test running and suites.
Class _​Broken​IDTest​Case​Adapter Adapter for pyunit-style TestCase subclasses that have undesirable id() methods. That is unittest.FunctionTestCase and unittest.DocTestCase.
Class _​Force​Garbage​Collection​Decorator Forces garbage collection to be run before and after the test. Any errors logged during the post-test collection are added to the test result as errors.
Class _​Py​Unit​Test​Case​Adapter Adapt from pyunit.TestCase to ITestCase.
Function _clear​Suite Clear all tests from suite.
Function _iterate​Tests Iterate through all of the test cases in testSuiteOrCase.
Variable _doc​Test​Case Undocumented
def _clearSuite(suite): (source)

Clear all tests from suite.

This messes with the internals of suite. In particular, it assumes that the suite keeps all of its tests in a list in an instance variable called _tests.

def _iterateTests(testSuiteOrCase): (source)
Iterate through all of the test cases in testSuiteOrCase.
_docTestCase = (source)

Undocumented