MCPcopy Create free account
hub / github.com/boostorg/json / run

Method run

test/json.cpp:22–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20 ::test_suite::log_type log;
21
22 void
23 run()
24 {
25 log <<
26 "sizeof(alignof)\n"
27 " object == " << sizeof(object) << " (" << alignof(object) << ")\n"
28 " value_type == " << sizeof(object::value_type) << " (" << alignof(object::value_type) << ")\n"
29 " array == " << sizeof(array) << " (" << alignof(array) << ")\n"
30 " string == " << sizeof(string) << " (" << alignof(string) << ")\n"
31 " value == " << sizeof(value) << " (" << alignof(value) << ")\n"
32 " serializer == " << sizeof(serializer) << "\n"
33 " stream_parser == " << sizeof(stream_parser)
34 ;
35 BOOST_TEST_PASS();
36 }
37};
38
39TEST_SUITE(json_test, "boost.json.zsizes");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected