arduino/libraries/ArduinoJson/test/JsonArray/isNull.cpp

35 lines
675 B
C++
Raw Normal View History

2018-11-03 20:21:33 +00:00
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License
#include <ArduinoJson.h>
#include <catch.hpp>
TEST_CASE("JsonArray::isNull()") {
2018-11-13 14:50:48 +00:00
DynamicJsonDocument doc;
SECTION("returns true") {
JsonArray arr;
REQUIRE(arr.isNull() == true);
}
SECTION("returns false") {
JsonArray arr = doc.to<JsonArray>();
REQUIRE(arr.isNull() == false);
2018-11-03 20:21:33 +00:00
}
2018-11-13 14:50:48 +00:00
}
TEST_CASE("JsonArrayConst::isNull()") {
DynamicJsonDocument doc;
2018-11-03 20:21:33 +00:00
2018-11-13 14:50:48 +00:00
SECTION("returns true") {
JsonArrayConst arr;
REQUIRE(arr.isNull() == true);
2018-11-03 20:21:33 +00:00
}
2018-11-13 14:50:48 +00:00
SECTION("returns false") {
JsonArrayConst arr = doc.to<JsonArray>();
REQUIRE(arr.isNull() == false);
2018-11-03 20:21:33 +00:00
}
}