| 13 | namespace { |
| 14 | |
| 15 | TEST(ErrInfoTest, Info__File) { |
| 16 | WasmEdge::ErrInfo::InfoFile Info1("file.txt"); |
| 17 | fmt::print("{}\n"sv, Info1); |
| 18 | EXPECT_TRUE(true); |
| 19 | } |
| 20 | |
| 21 | TEST(ErrInfoTest, Info__Loading) { |
| 22 | WasmEdge::ErrInfo::InfoLoading Info1(30); |
nothing calls this directly
no test coverage detected