(self, _IfdEntryFactory_, ifd_entry_, ifd_entry_2_)
| 289 | |
| 290 | @pytest.fixture |
| 291 | def iter_fixture(self, _IfdEntryFactory_, ifd_entry_, ifd_entry_2_): |
| 292 | stream_rdr = StreamReader(io.BytesIO(b"\x00\x02"), BIG_ENDIAN) |
| 293 | offsets = [2, 14] |
| 294 | ifd_parser = _IfdParser(stream_rdr, offset=0) |
| 295 | expected_entries = [ifd_entry_, ifd_entry_2_] |
| 296 | return (ifd_parser, _IfdEntryFactory_, stream_rdr, offsets, expected_entries) |
| 297 | |
| 298 | |
| 299 | class Describe_IfdEntryFactory: |
nothing calls this directly
no test coverage detected