| 895 | } |
| 896 | |
| 897 | void |
| 898 | run() |
| 899 | { |
| 900 | { |
| 901 | serializer sr; |
| 902 | BOOST_ASSERT( sr.read(nullptr, 0).empty() ); |
| 903 | } |
| 904 | testNull(); |
| 905 | testBoolean(); |
| 906 | testString(); |
| 907 | testNumber(); |
| 908 | testArray(); |
| 909 | testObject(); |
| 910 | |
| 911 | testMembers(); |
| 912 | testVectors(); |
| 913 | testOstream(); |
| 914 | testNumberRoundTrips(); |
| 915 | testStack(); |
| 916 | testUDT(); |
| 917 | } |
| 918 | }; |
| 919 | |
| 920 | TEST_SUITE(serializer_test, "boost.json.serializer"); |
nothing calls this directly
no test coverage detected