From c91085330456f58bb2956086bed17e3642d8313d Mon Sep 17 00:00:00 2001 From: Niels Date: Sun, 2 Aug 2015 21:49:42 +0200 Subject: [PATCH] fixed build --- test/unit.cpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/test/unit.cpp b/test/unit.cpp index e6238610a..735fbd245 100644 --- a/test/unit.cpp +++ b/test/unit.cpp @@ -7547,24 +7547,6 @@ TEST_CASE("iterator class") } } -TEST_CASE("iterator_wrapper") -{ - SECTION("objects") - { -// std::stringstream ss; - json j_object = {{"key1", 1}, {"key2", 2}}; - for (auto it : json::iterator_wrapper(j_object)) - { -// ss << it.first << ' '; -// ss << it.key() << ' '; -// ss << it.second << ' '; -// ss << it.value() << ' '; - } - -// CHECK(ss.str() == "key1 key1 1 1 key2 key2 2 2 "); - } -} - TEST_CASE("const_iterator class") { SECTION("construction")