| 25 | #include <test.hpp> |
| 26 | |
| 27 | TEST_CASE(interpolate_string_simple1) |
| 28 | { |
| 29 | std::string input = "Hello ${w}!"; |
| 30 | auto s = migraphx::interpolate_string(input, {{"w", "world"}}); |
| 31 | EXPECT(s == "Hello world!"); |
| 32 | } |
| 33 | |
| 34 | TEST_CASE(interpolate_string_simple2) |
| 35 | { |
nothing calls this directly
no test coverage detected