+ more test cases

pull/6/head
Niels 2014-12-28 22:38:57 +01:00
parent 98af0887f2
commit b573841ace
3 changed files with 20 additions and 1 deletions

View File

@ -23,4 +23,3 @@ after_success:
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage"
- ./json_unit
- coveralls --exclude lib --exclude test --gcov-options '\-lp' --gcov 'gcov-4.8'

View File

@ -1381,6 +1381,7 @@ JSON::iterator::iterator(const JSON::iterator& o) : _object(o._object)
}
default:
{
// not sure if used
break;
}
}

View File

@ -1402,12 +1402,31 @@ TEST_CASE("Iterators")
JSON::iterator i2(i1);
JSON::iterator i3;
i3 = i2;
CHECK(i1 == i1);
JSON::const_iterator i4 = j_array.begin();
++i4;
JSON::const_iterator i5(i4);
JSON::const_iterator i6;
i6 = i5;
CHECK(i4 == i4);
}
{
JSON j_object = {{"1", 1}, {"2", 2}};
JSON::iterator i1 = j_object.begin();
++i1;
JSON::iterator i2(i1);
JSON::iterator i3;
i3 = i2;
CHECK(i1 == i1);
JSON::const_iterator i4 = j_object.begin();
++i4;
JSON::const_iterator i5(i4);
JSON::const_iterator i6;
i6 = i5;
CHECK(i4 == i4);
}
// iterator copy assignment