Added JsonVariant JsonBuffer::parse() (issue #265)

This commit is contained in:
Benoit Blanchon
2016-04-30 09:47:53 +02:00
parent a138791964
commit a8032f81d9
8 changed files with 121 additions and 4 deletions

View File

@ -93,9 +93,9 @@ TEST_F(JsonVariant_PrintTo_Tests, Integer) {
outputMustBe("42");
}
TEST_F(JsonVariant_PrintTo_Tests, Long) {
variant = 42L;
outputMustBe("42");
TEST_F(JsonVariant_PrintTo_Tests, NegativeLong) {
variant = -42;
outputMustBe("-42");
}
TEST_F(JsonVariant_PrintTo_Tests, UnsignedLong) {