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.
58 lines
1.3 KiB
58 lines
1.3 KiB
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2022, 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") {
|
|
DynamicJsonDocument doc(4096);
|
|
JsonArray arr = doc.to<JsonArray>();
|
|
REQUIRE(arr.isNull() == false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("JsonArrayConst::isNull()") {
|
|
SECTION("returns true") {
|
|
JsonArrayConst arr;
|
|
REQUIRE(arr.isNull() == true);
|
|
}
|
|
|
|
SECTION("returns false") {
|
|
DynamicJsonDocument doc(4096);
|
|
JsonArrayConst 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") {
|
|
DynamicJsonDocument doc(4096);
|
|
JsonArray arr = doc.to<JsonArray>();
|
|
REQUIRE(static_cast<bool>(arr) == true);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("JsonArrayConst::operator bool()") {
|
|
SECTION("returns false") {
|
|
JsonArrayConst arr;
|
|
REQUIRE(static_cast<bool>(arr) == false);
|
|
}
|
|
|
|
SECTION("returns true") {
|
|
DynamicJsonDocument doc(4096);
|
|
JsonArrayConst arr = doc.to<JsonArray>();
|
|
REQUIRE(static_cast<bool>(arr) == true);
|
|
}
|
|
}
|
|
|