// __ _____ _____ _____ // __| | __| | | | JSON for Modern C++ (supporting code) // | | |__ | | | | | | version 3.11.2 // |_____|_____|_____|_|___| https://github.com/nlohmann/json // // SPDX-FileCopyrightText: 2013-2022 Niels Lohmann // SPDX-License-Identifier: MIT #include "doctest_compatibility.h" #include using nlohmann::json; TEST_CASE("concepts") { SECTION("container requirements for json") { // X: container class: json // T: type of objects: json // a, b: values of type X: json // TABLE 96 - Container Requirements // X::value_type must return T CHECK((std::is_same::value)); // X::reference must return lvalue of T CHECK((std::is_same::value)); // X::const_reference must return const lvalue of T CHECK((std::is_same::value)); // X::iterator must return iterator whose value_type is T CHECK((std::is_same::value)); // X::iterator must meet the forward iterator requirements CHECK((std::is_base_of::iterator_category>::value)); // X::iterator must be convertible to X::const_iterator CHECK((std::is_convertible::value)); // X::const_iterator must return iterator whose value_type is T CHECK((std::is_same::value)); // X::const_iterator must meet the forward iterator requirements CHECK((std::is_base_of::iterator_category>::value)); // X::difference_type must return a signed integer CHECK((std::is_signed::value)); // X::difference_type must be identical to X::iterator::difference_type CHECK((std::is_same::value)); // X::difference_type must be identical to X::const_iterator::difference_type CHECK((std::is_same::value)); // X::size_type must return an unsigned integer CHECK((std::is_unsigned::value)); // X::size_type can represent any non-negative value of X::difference_type CHECK(static_cast((std::numeric_limits::max)()) <= (std::numeric_limits::max)()); // the expression "X u" has the post-condition "u.empty()" { json u; CHECK(u.empty()); } // the expression "X()" has the post-condition "X().empty()" CHECK(json().empty()); } SECTION("class json") { SECTION("DefaultConstructible") { CHECK(std::is_nothrow_default_constructible::value); } SECTION("MoveConstructible") { CHECK(std::is_move_constructible::value); CHECK(std::is_nothrow_move_constructible::value); } SECTION("CopyConstructible") { CHECK(std::is_copy_constructible::value); } SECTION("MoveAssignable") { CHECK(std::is_nothrow_move_assignable::value); } SECTION("CopyAssignable") { CHECK(std::is_copy_assignable::value); } SECTION("Destructible") { CHECK(std::is_nothrow_destructible::value); } SECTION("StandardLayoutType") { CHECK(std::is_standard_layout::value); } } SECTION("class iterator") { SECTION("CopyConstructible") { CHECK(std::is_nothrow_copy_constructible::value); CHECK(std::is_nothrow_copy_constructible::value); } SECTION("CopyAssignable") { // STL iterators used by json::iterator don't pass this test in Debug mode #if !defined(_MSC_VER) || (_ITERATOR_DEBUG_LEVEL == 0) CHECK(std::is_nothrow_copy_assignable::value); CHECK(std::is_nothrow_copy_assignable::value); #endif } SECTION("Destructible") { CHECK(std::is_nothrow_destructible::value); CHECK(std::is_nothrow_destructible::value); } SECTION("Swappable") { { json j {1, 2, 3}; json::iterator it1 = j.begin(); json::iterator it2 = j.end(); swap(it1, it2); CHECK(it1 == j.end()); CHECK(it2 == j.begin()); } { json j {1, 2, 3}; json::const_iterator it1 = j.cbegin(); json::const_iterator it2 = j.cend(); swap(it1, it2); CHECK(it1 == j.end()); CHECK(it2 == j.begin()); } } } }