// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2019 // MIT License #include #include TEST_CASE("JsonObject::createNestedObject()") { DynamicJsonDocument doc(4096); JsonObject obj = doc.to(); SECTION("key is a const char*") { obj.createNestedObject("hello"); } #ifdef HAS_VARIABLE_LENGTH_ARRAY SECTION("key is a VLA") { int i = 16; char vla[i]; strcpy(vla, "hello"); obj.createNestedObject(vla); } #endif }