(self)
| 188 | |
| 189 | # Test a class with __iter__ in a for loop |
| 190 | def test_iter_class_for(self): |
| 191 | self.check_for_loop(IteratingSequenceClass(10), list(range(10))) |
| 192 | |
| 193 | # Test a class with __iter__ with explicit iter() |
| 194 | def test_iter_class_iter(self): |
nothing calls this directly
no test coverage detected