mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-04 06:06:36 +02:00
20 lines
393 B
C++
20 lines
393 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2023
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("JsonObject basics") {
|
|
DynamicJsonBuffer _jsonBuffer;
|
|
JsonObject& _object = _jsonBuffer.createObject();
|
|
|
|
SECTION("InitialSizeIsZero") {
|
|
REQUIRE(0 == _object.size());
|
|
}
|
|
|
|
SECTION("SuccessIsTrue") {
|
|
REQUIRE(_object.success());
|
|
}
|
|
}
|