forked from bblanchon/ArduinoJson
Improved coverage of JsonObject
This commit is contained in:
@ -69,4 +69,9 @@ TEST_CASE("JsonObject::remove()") {
|
||||
REQUIRE("{\"a\":0,\"c\":2}" == result);
|
||||
}
|
||||
#endif
|
||||
|
||||
SECTION("should work on null object") {
|
||||
JsonObject null;
|
||||
null.remove("key");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user