set.cpp 512 B

1234567891011121314151617181920212223242526
  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::set()") {
  8. DynamicJsonDocument doc(4096);
  9. doc.addElement();
  10. ElementProxy<JsonDocument&> ep = doc[0];
  11. SECTION("set(int)") {
  12. ep.set(42);
  13. REQUIRE(doc.as<std::string>() == "[42]");
  14. }
  15. SECTION("set(const char*)") {
  16. ep.set("world");
  17. REQUIRE(doc.as<std::string>() == "[\"world\"]");
  18. }
  19. }