| 62 | WasmEdge::SpecTestModule SpecTestMod; |
| 63 | WasmEdge::Configure Conf; |
| 64 | TestContext(const WasmEdge::Configure &C) : VM(C), Conf(C) { |
| 65 | VM.registerModule(SpecTestMod); |
| 66 | } |
| 67 | Expect<std::string> compile(const std::string &FileName) { |
| 68 | WasmEdge::Configure CopyConf = Conf; |
| 69 | WasmEdge::Loader::Loader Loader(Conf); |
nothing calls this directly
no test coverage detected