(path: string)
| 70 | } |
| 71 | |
| 72 | public static async loadFileAsString(path: string): Promise<string> { |
| 73 | const data = await TestPlatform.loadFile(path); |
| 74 | return IOHelper.toString(data, 'UTF-8'); |
| 75 | } |
| 76 | |
| 77 | public static loadFileAsStringSync(path: string): string { |
| 78 | const data = TestPlatform.loadFileSync(path); |
no test coverage detected