| 318 | { |
| 319 | // Simulate an external resource (e.g., file handle, database connection) |
| 320 | class FakeFileHandle { |
| 321 | private _closed = false; |
| 322 | private _data = ['line1\n', 'line2\n', 'line3\n']; |
| 323 | private _position = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected