mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-15 11:36:36 +02:00
19 lines
357 B
C++
19 lines
357 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <catch.hpp>
|
|
|
|
#include <string>
|
|
|
|
TEST_CASE("Implicit cast to JsonVariant") {
|
|
DynamicJsonDocument doc(128);
|
|
|
|
doc["hello"] = "world";
|
|
|
|
JsonVariant var = doc;
|
|
|
|
CHECK(var.as<std::string>() == "{\"hello\":\"world\"}");
|
|
}
|