| 343 | } |
| 344 | |
| 345 | void |
| 346 | static |
| 347 | check_round_trip(value const& jv1, |
| 348 | const parse_options& po = parse_options()) |
| 349 | { |
| 350 | auto const s2 = |
| 351 | //to_string_test(jv1); // use this if serializer is broken |
| 352 | serialize(jv1); |
| 353 | auto jv2 = |
| 354 | from_string_test(s2, {}, po); |
| 355 | BOOST_TEST(equal(jv1, jv2)); |
| 356 | } |
| 357 | |
| 358 | template<class F> |
| 359 | void |
nothing calls this directly
no test coverage detected