You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
340 B
17 lines
340 B
#define ARDUINOJSON_USE_DOUBLE 1
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("ARDUINOJSON_USE_DOUBLE == 1") {
|
|
DynamicJsonDocument doc(4096);
|
|
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}");
|
|
}
|
|
|