| 7 | import assert from 'node:assert'; |
| 8 | |
| 9 | export interface CapturedFunctionCall { |
| 10 | name: string; |
| 11 | args: Record<string, unknown>; |
| 12 | } |
| 13 | |
| 14 | export class Result { |
| 15 | private nextCallIndex = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected