arduino/libraries/ArduinoJson/test/MixedConfiguration/use_double_0.cpp
Martin Donnelly e9c94ebfff update
2018-11-13 14:50:48 +00:00

18 lines
334 B
C++

#define ARDUINOJSON_USE_DOUBLE 0
#include <ArduinoJson.h>
#include <catch.hpp>
TEST_CASE("ARDUINOJSON_USE_DOUBLE == 0") {
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}");
}