| 19 | export { RecordingStorage } from "./testing-recording.js"; |
| 20 | |
| 21 | class TestCursor<Row extends object> implements SQLCursorLike<Row> { |
| 22 | private readonly rows: Row[]; |
| 23 | |
| 24 | constructor(rows: Row[]) { |
nothing calls this directly
no outgoing calls
no test coverage detected