forked from bblanchon/ArduinoJson
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