| 380 | } |
| 381 | |
| 382 | void |
| 383 | run() |
| 384 | { |
| 385 | #if ! defined(BOOST_JSON_NO_MAX_STRUCTURED_SIZE) && \ |
| 386 | ! defined(BOOST_JSON_NO_MAX_STRING_SIZE) && \ |
| 387 | ! defined(BOOST_JSON_NO_MAX_STACK_SIZE) && \ |
| 388 | ! defined(BOOST_JSON_NO_STACK_BUFFER_SIZE) |
| 389 | |
| 390 | //testValue(); |
| 391 | testObject(); |
| 392 | testArray(); |
| 393 | testString(); |
| 394 | testParser(); |
| 395 | testNumber(); |
| 396 | |
| 397 | #else |
| 398 | BOOST_TEST_PASS(); |
| 399 | #endif |
| 400 | } |
| 401 | }; |
| 402 | |
| 403 | TEST_SUITE(limits_test, "boost.json.limits"); |
nothing calls this directly
no test coverage detected