mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-06-25 01:11:35 +02:00
33 lines
687 B
C++
33 lines
687 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2025, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("JsonArray::isNull()") {
|
|
SECTION("returns true") {
|
|
JsonArray arr;
|
|
REQUIRE(arr.isNull() == true);
|
|
}
|
|
|
|
SECTION("returns false") {
|
|
JsonDocument doc;
|
|
JsonArray arr = doc.to<JsonArray>();
|
|
REQUIRE(arr.isNull() == false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("JsonArray::operator bool()") {
|
|
SECTION("returns false") {
|
|
JsonArray arr;
|
|
REQUIRE(static_cast<bool>(arr) == false);
|
|
}
|
|
|
|
SECTION("returns true") {
|
|
JsonDocument doc;
|
|
JsonArray arr = doc.to<JsonArray>();
|
|
REQUIRE(static_cast<bool>(arr) == true);
|
|
}
|
|
}
|