| 30 | #include <test.hpp> |
| 31 | |
| 32 | TEST_CASE(null_value) |
| 33 | { |
| 34 | migraphx::value v; |
| 35 | auto json_str = migraphx::to_json_string(v); |
| 36 | EXPECT(json_str == "null"); |
| 37 | } |
| 38 | |
| 39 | TEST_CASE(null_value_rev) |
| 40 | { |
nothing calls this directly
no test coverage detected