| 105 | } |
| 106 | |
| 107 | void |
| 108 | static |
| 109 | check_round_trip(value const& jv1, |
| 110 | const parse_options& po = parse_options()) |
| 111 | { |
| 112 | auto const s2 = |
| 113 | //to_string_test(jv1); // use this if serializer is broken |
| 114 | serialize(jv1); |
| 115 | auto jv2 = |
| 116 | from_string_test(s2, {}, po); |
| 117 | BOOST_TEST(equal(jv1, jv2)); |
| 118 | } |
| 119 | |
| 120 | template<class F> |
| 121 | void |
nothing calls this directly
no test coverage detected