mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 10:17:39 +02:00
Pulled up code from JsonObject to JsonContainer
This commit is contained in:
@ -14,6 +14,11 @@ protected:
|
||||
JsonObject object;
|
||||
};
|
||||
|
||||
TEST_F(JsonObjectTests, InitialSizeIsZero)
|
||||
{
|
||||
EXPECT_EQ(0, object.size());
|
||||
}
|
||||
|
||||
TEST_F(JsonObjectTests, Grow_WhenValuesAreAdded)
|
||||
{
|
||||
object["hello"];
|
||||
|
Reference in New Issue
Block a user