| 65 | } |
| 66 | |
| 67 | void check_remove(json& example, const std::string& path, const json& expected) |
| 68 | { |
| 69 | std::error_code ec; |
| 70 | jsonpointer::remove(example, path, ec); |
| 71 | CHECK_FALSE(ec); |
| 72 | CHECK(expected == example); |
| 73 | } |
| 74 | |
| 75 | TEST_CASE("get_with_const_ref_test") |
| 76 | { |
no test coverage detected