| 66 | WasmEdge_VMRegisterModuleFromImport(VM, TestModCxt); |
| 67 | } |
| 68 | ~TestContext() { |
| 69 | WasmEdge_VMDelete(VM); |
| 70 | WasmEdge_ModuleInstanceDelete(TestModCxt); |
| 71 | WasmEdge_CompilerDelete(CompilerCxt); |
| 72 | } |
| 73 | Expect<std::string> compile(const std::string &FileName) { |
| 74 | auto Path = std::filesystem::u8path(FileName); |
| 75 | Path.replace_extension(std::filesystem::u8path(WASMEDGE_LIB_EXTENSION)); |
nothing calls this directly
no test coverage detected