Changes between Initial Version and Version 1 of Ticket #32489, comment 2
- Timestamp:
- Feb 27, 2021, 10:09:10 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32489, comment 2
initial v1 3 3 {{{#!python 4 4 def iter_test_cases(suite): 5 """Return an iterator over a test suite's unittest.TestCase objects.""" 5 6 suite_class = type(suite) 6 7 for test in suite: