You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
717 B
33 lines
717 B
9 months ago
|
// ArduinoJson - https://arduinojson.org
|
||
|
// Copyright © 2014-2024, Benoit BLANCHON
|
||
|
// MIT License
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
#include <catch.hpp>
|
||
|
|
||
|
TEST_CASE("JsonArrayConst::isNull()") {
|
||
|
SECTION("returns true") {
|
||
|
JsonArrayConst arr;
|
||
|
REQUIRE(arr.isNull() == true);
|
||
|
}
|
||
|
|
||
|
SECTION("returns false") {
|
||
|
JsonDocument doc;
|
||
|
JsonArrayConst arr = doc.to<JsonArray>();
|
||
|
REQUIRE(arr.isNull() == false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TEST_CASE("JsonArrayConst::operator bool()") {
|
||
|
SECTION("returns false") {
|
||
|
JsonArrayConst arr;
|
||
|
REQUIRE(static_cast<bool>(arr) == false);
|
||
|
}
|
||
|
|
||
|
SECTION("returns true") {
|
||
|
JsonDocument doc;
|
||
|
JsonArrayConst arr = doc.to<JsonArray>();
|
||
|
REQUIRE(static_cast<bool>(arr) == true);
|
||
|
}
|
||
|
}
|