Rename tests/JsonObject/invalid.cpp to unbound.cpp

This commit is contained in:
Benoit Blanchon
2023-08-09 11:46:30 +02:00
parent adea7f4131
commit bc6707b10c
2 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,27 @@
// ArduinoJson - https://arduinojson.org
// Copyright © 2014-2023, Benoit BLANCHON
// MIT License
#include <ArduinoJson.h>
#include <catch.hpp>
using namespace Catch::Matchers;
TEST_CASE("Unbound JsonObject") {
JsonObject obj;
SECTION("retrieve member") {
REQUIRE(obj["key"].isNull());
}
SECTION("add member") {
obj["hello"] = "world";
REQUIRE(0 == obj.size());
}
SECTION("serialize") {
char buffer[32];
serializeJson(obj, buffer, sizeof(buffer));
REQUIRE_THAT(buffer, Equals("null"));
}
}