Changes between Initial Version and Version 1 of Ticket #32489, comment 2


Ignore:
Timestamp:
Feb 27, 2021, 10:09:10 PM (4 years ago)
Author:
Chris Jerdonek

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32489, comment 2

    initial v1  
    33{{{#!python
    44def iter_test_cases(suite):
     5    """Return an iterator over a test suite's unittest.TestCase objects."""
    56    suite_class = type(suite)
    67    for test in suite:
Back to Top