Files
ArduinoJson/extras/tests/Cpp20/smoke_test.cpp

16 lines
311 B
C++
Raw Normal View History

#include <ArduinoJson.h>
#include <catch.hpp>
#include <string>
TEST_CASE("C++20 smoke test") {
2023-03-15 14:54:55 +01:00
DynamicJsonDocument doc(128);
deserializeJson(doc, "{\"hello\":\"world\"}");
REQUIRE(doc["hello"] == "world");
std::string json;
serializeJson(doc, json);
REQUIRE(json == "{\"hello\":\"world\"}");
}