(path: string)
| 116 | } |
| 117 | |
| 118 | read(path: string): string { |
| 119 | const normalizedPath = this.normalizePath(path); |
| 120 | const file = this.files.get(normalizedPath); |
| 121 | if (!file) { |
| 122 | throw new Error(`File not found: ${normalizedPath}`); |
| 123 | } |
| 124 | return file.content; |
| 125 | } |
| 126 | |
| 127 | getFiles(): MockFile[] { |
| 128 | return Array.from(this.files.values()); |
nothing calls this directly
no test coverage detected