| 291 | } |
| 292 | |
| 293 | void run() |
| 294 | { |
| 295 | value const jv; |
| 296 | visitor_ref_tester()(); |
| 297 | |
| 298 | BOOST_TEST_CHECKPOINT(); |
| 299 | check_nonref(kind::null, nullptr); |
| 300 | check_nonref(kind::bool_, true); |
| 301 | check_nonref(kind::int64, -1); |
| 302 | check_nonref(kind::uint64, 1U); |
| 303 | check_nonref(kind::double_, 3.14); |
| 304 | check_nonref(kind::string, string_kind); |
| 305 | check_nonref(kind::array, array_kind); |
| 306 | check_nonref(kind::object, object_kind); |
| 307 | } |
| 308 | }; |
| 309 | |
| 310 | TEST_SUITE(visit_test, "boost.json.visit"); |
nothing calls this directly
no test coverage detected