class documentation

_iterateTests returns a list of all test cases in a test suite or test case.

Method test_iterateIsLeftToRightDepthFirst _iterateTests returns tests in left-to-right, depth-first order.
Method test_iterateNestedTestSuite _iterateTests returns tests that are in nested test suites.
Method test_iterateSingletonTestSuite _iterateTests on a test suite that contains a single test case returns a list containing that test case.
Method test_iterateTestCase _iterateTests on a single test case returns a list containing that test case.
def test_iterateIsLeftToRightDepthFirst(self):

_iterateTests returns tests in left-to-right, depth-first order.

def test_iterateNestedTestSuite(self):

_iterateTests returns tests that are in nested test suites.

def test_iterateSingletonTestSuite(self):

_iterateTests on a test suite that contains a single test case returns a list containing that test case.

def test_iterateTestCase(self):

_iterateTests on a single test case returns a list containing that test case.