clear.cpp 528 B

12345678910111213141516171819202122232425262728
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. #include <ArduinoJson.h>
  5. #include <catch.hpp>
  6. using namespace ARDUINOJSON_NAMESPACE;
  7. TEST_CASE("ElementProxy::clear()") {
  8. DynamicJsonDocument doc(4096);
  9. doc.addElement();
  10. ElementProxy<JsonDocument&> ep = doc[0];
  11. SECTION("size goes back to zero") {
  12. ep.add(42);
  13. ep.clear();
  14. REQUIRE(ep.size() == 0);
  15. }
  16. SECTION("isNull() return true") {
  17. ep.add("hello");
  18. ep.clear();
  19. REQUIRE(ep.isNull() == true);
  20. }
  21. }