| 13 | }; |
| 14 | |
| 15 | class TestLoader implements ITableBundleLoader { |
| 16 | load(path: string): Buffer { |
| 17 | return fs.readFileSync(path); |
| 18 | } |
| 19 | } |
| 20 | class TestSaver implements ITableBundleSaver { |
| 21 | save(array: Uint8Array, path: string): void { |
| 22 | return fs.writeFileSync(path, array); |
nothing calls this directly
no outgoing calls
no test coverage detected