Replaced JsonToken operators by meaningful methods

This commit is contained in:
Benoit Blanchon
2014-07-18 15:54:49 +02:00
parent 4a1d8483cc
commit 714a37bd59
6 changed files with 18 additions and 17 deletions

View File

@ -11,13 +11,13 @@ namespace JsonParserTests
{
public:
TEST_METHOD(SimpleIteraton)
TEST_METHOD(ThreeIntegers)
{
char json [] = "[1,2,3]";
JsonParser<4> parser;
JsonArray a = parser.parse(json);
long expected = 1;
for (auto i : a)