mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			400 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			400 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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}");
 | |
| }
 |