measure.cpp 314 B

1234567891011121314
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. #include <ArduinoJson.h>
  5. #include <catch.hpp>
  6. TEST_CASE("measureMsgPack()") {
  7. DynamicJsonDocument doc(4096);
  8. JsonObject object = doc.to<JsonObject>();
  9. object["hello"] = "world";
  10. REQUIRE(measureMsgPack(doc) == 13);
  11. }