(self)
| 1586 | self._check_sample(msg) |
| 1587 | |
| 1588 | def test_initialize_with_binary_file(self): |
| 1589 | # Initialize based on contents of binary file |
| 1590 | with open(self._path, 'wb+') as f: |
| 1591 | f.write(_bytes_sample_message) |
| 1592 | f.seek(0) |
| 1593 | msg = self._factory(f) |
| 1594 | self._post_initialize_hook(msg) |
| 1595 | self._check_sample(msg) |
| 1596 | |
| 1597 | def test_initialize_with_nothing(self): |
| 1598 | # Initialize without arguments |
nothing calls this directly
no test coverage detected