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
400 B
17 lines
400 B
#define ARDUINOJSON_USE_LONG_LONG 1
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("ARDUINOJSON_USE_LONG_LONG == 1") {
|
|
DynamicJsonDocument doc(4096);
|
|
JsonObject root = doc.to<JsonObject>();
|
|
|
|
root["A"] = 123456789123456789;
|
|
root["B"] = 987654321987654321;
|
|
|
|
std::string json;
|
|
serializeJson(doc, json);
|
|
|
|
REQUIRE(json == "{\"A\":123456789123456789,\"B\":987654321987654321}");
|
|
}
|
|
|