(path: string)
| 50 | constructor(private resources: Map<string, MockFile>) {} |
| 51 | |
| 52 | lookup(path: string): MockFile | undefined { |
| 53 | return this.resources.get(path); |
| 54 | } |
| 55 | |
| 56 | extend(): MockFileSystemBuilder { |
| 57 | const builder = new MockFileSystemBuilder(); |
no test coverage detected