isNull.cpp 687 B

12345678910111213141516171819202122232425262728293031323334
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. #include <ArduinoJson.h>
  5. #include <catch.hpp>
  6. TEST_CASE("JsonArray::isNull()") {
  7. DynamicJsonDocument doc(4096);
  8. SECTION("returns true") {
  9. JsonArray arr;
  10. REQUIRE(arr.isNull() == true);
  11. }
  12. SECTION("returns false") {
  13. JsonArray arr = doc.to<JsonArray>();
  14. REQUIRE(arr.isNull() == false);
  15. }
  16. }
  17. TEST_CASE("JsonArrayConst::isNull()") {
  18. DynamicJsonDocument doc(4096);
  19. SECTION("returns true") {
  20. JsonArrayConst arr;
  21. REQUIRE(arr.isNull() == true);
  22. }
  23. SECTION("returns false") {
  24. JsonArrayConst arr = doc.to<JsonArray>();
  25. REQUIRE(arr.isNull() == false);
  26. }
  27. }