18 lines
334 B
C++
18 lines
334 B
C++
#define ARDUINOJSON_USE_DOUBLE 1
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("ARDUINOJSON_USE_DOUBLE == 1") {
|
|
DynamicJsonDocument 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}");
|
|
}
|