(self)
| 77 | # file_byte_string = b'Bad data goes here' |
| 78 | |
| 79 | def test_getline(self): |
| 80 | self.assertEqual(linecache.getline(self.file_name, 1), '') |
| 81 | |
| 82 | def test_getlines(self): |
| 83 | self.assertEqual(linecache.getlines(self.file_name), []) |
nothing calls this directly
no test coverage detected