(self)
| 192 | |
| 193 | # Test a class with __iter__ with explicit iter() |
| 194 | def test_iter_class_iter(self): |
| 195 | self.check_iterator(iter(IteratingSequenceClass(10)), list(range(10))) |
| 196 | |
| 197 | # Test for loop on a sequence class without __iter__ |
| 198 | def test_seq_class_for(self): |
nothing calls this directly
no test coverage detected