add.cpp 618 B

1234567891011121314151617181920212223242526272829303132
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. #include <ArduinoJson.h>
  5. #include <stdint.h>
  6. #include <catch.hpp>
  7. static const char* null = 0;
  8. TEST_CASE("JsonVariant::add()") {
  9. DynamicJsonDocument doc(4096);
  10. JsonVariant var = doc.to<JsonVariant>();
  11. SECTION("integer") {
  12. var.add(42);
  13. REQUIRE(var.as<std::string>() == "[42]");
  14. }
  15. SECTION("const char*") {
  16. var.add("hello");
  17. REQUIRE(var.as<std::string>() == "[\"hello\"]");
  18. }
  19. SECTION("std::string") {
  20. var.add(std::string("hello"));
  21. REQUIRE(var.as<std::string>() == "[\"hello\"]");
  22. }
  23. }