Files
Benoit Blanchon 18671a5f3b Replace catch with doctest
This reduces the build times by about 38%
2026-07-06 17:59:49 +02:00

18 lines
327 B
C++

#define ARDUINOJSON_USE_DOUBLE 1
#include <ArduinoJson.h>
#include <doctest.h>
TEST_CASE("ARDUINOJSON_USE_DOUBLE == 1") {
JsonDocument doc;
JsonObject root = doc.to<JsonObject>();
root["pi"] = 3.14;
root["e"] = 2.72;
std::string json;
serializeJson(doc, json);
REQUIRE(json == "{\"pi\":3.14,\"e\":2.72}");
}