2016-08-04 19:55:47 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
2018-10-05 08:59:33 +00:00
|
|
|
| | |__ | | | | | | version 3.3.0
|
2016-08-04 19:55:47 +00:00
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
2018-05-03 15:41:45 +00:00
|
|
|
SPDX-License-Identifier: MIT
|
2018-02-01 21:20:26 +00:00
|
|
|
Copyright (c) 2013-2018 Niels Lohmann <http://nlohmann.me>.
|
2016-08-04 19:55:47 +00:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
|
|
|
|
|
|
#define private public
|
2018-01-29 10:21:11 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2016-08-04 19:55:47 +00:00
|
|
|
using nlohmann::json;
|
|
|
|
|
|
|
|
TEST_CASE("iterator class")
|
|
|
|
{
|
|
|
|
SECTION("construction")
|
|
|
|
{
|
|
|
|
SECTION("constructor")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it(&j);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j(json::value_t::object);
|
|
|
|
json::iterator it(&j);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j(json::value_t::array);
|
|
|
|
json::iterator it(&j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("copy assignment")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it(&j);
|
|
|
|
json::iterator it2(&j);
|
|
|
|
it2 = it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("initialization")
|
|
|
|
{
|
|
|
|
SECTION("set_begin")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j(json::value_t::object);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j(json::value_t::array);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("set_end")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j(json::value_t::object);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j(json::value_t::array);
|
|
|
|
json::iterator it(&j);
|
|
|
|
it.set_end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it == j.end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("element access")
|
|
|
|
{
|
|
|
|
SECTION("operator*")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.begin();
|
2017-07-07 20:41:22 +00:00
|
|
|
CHECK_THROWS_AS(*it, json::invalid_iterator&);
|
2017-03-03 13:34:57 +00:00
|
|
|
CHECK_THROWS_WITH(*it, "[json.exception.invalid_iterator.214] cannot get value");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.begin();
|
|
|
|
CHECK(*it == json(17));
|
|
|
|
it = j.end();
|
2017-07-07 20:41:22 +00:00
|
|
|
CHECK_THROWS_AS(*it, json::invalid_iterator&);
|
2017-03-03 13:34:57 +00:00
|
|
|
CHECK_THROWS_WITH(*it, "[json.exception.invalid_iterator.214] cannot get value");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.begin();
|
|
|
|
CHECK(*it == json("bar"));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.begin();
|
|
|
|
CHECK(*it == json(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("operator->")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.begin();
|
2017-07-26 21:59:56 +00:00
|
|
|
CHECK_THROWS_AS(std::string(it->type_name()), json::invalid_iterator&);
|
|
|
|
CHECK_THROWS_WITH(std::string(it->type_name()), "[json.exception.invalid_iterator.214] cannot get value");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.begin();
|
2017-07-26 21:59:56 +00:00
|
|
|
CHECK(std::string(it->type_name()) == "number");
|
2016-08-04 19:55:47 +00:00
|
|
|
it = j.end();
|
2017-07-26 21:59:56 +00:00
|
|
|
CHECK_THROWS_AS(std::string(it->type_name()), json::invalid_iterator&);
|
|
|
|
CHECK_THROWS_WITH(std::string(it->type_name()), "[json.exception.invalid_iterator.214] cannot get value");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.begin();
|
2017-07-26 21:59:56 +00:00
|
|
|
CHECK(std::string(it->type_name()) == "string");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.begin();
|
2017-07-26 21:59:56 +00:00
|
|
|
CHECK(std::string(it->type_name()) == "number");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("increment/decrement")
|
|
|
|
{
|
|
|
|
SECTION("post-increment")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 0));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it++;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("pre-increment")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 0));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.begin();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
++it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("post-decrement")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 0));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
it--;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("pre-decrement")
|
|
|
|
{
|
|
|
|
SECTION("null")
|
|
|
|
{
|
|
|
|
json j(json::value_t::null);
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("number")
|
|
|
|
{
|
|
|
|
json j(17);
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it == 0));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2016-11-30 22:16:54 +00:00
|
|
|
CHECK((it.m_it.primitive_iterator.m_it != 0 and it.m_it.primitive_iterator.m_it != 1));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("object")
|
|
|
|
{
|
|
|
|
json j({{"foo", "bar"}});
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.object_iterator == it.m_object->m_value.object->begin()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("array")
|
|
|
|
{
|
|
|
|
json j({1, 2, 3, 4});
|
|
|
|
json::iterator it = j.end();
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
--it;
|
2017-01-08 17:17:33 +00:00
|
|
|
CHECK((it.m_it.array_iterator == it.m_object->m_value.array->begin()));
|
|
|
|
CHECK((it.m_it.array_iterator != it.m_object->m_value.array->end()));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|