| 561 | } |
| 562 | |
| 563 | void |
| 564 | check( |
| 565 | string_view s, |
| 566 | string_view name = {}) |
| 567 | { |
| 568 | try |
| 569 | { |
| 570 | auto const jv = parse(s); |
| 571 | grind(s, jv, name); |
| 572 | } |
| 573 | catch(std::exception const&) |
| 574 | { |
| 575 | BOOST_TEST_FAIL(); |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | template<class T> |
| 580 | void |
nothing calls this directly
no outgoing calls
no test coverage detected