mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			387 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			387 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#define ARDUINOJSON_USE_LONG_LONG 1
 | 
						|
#include <ArduinoJson.h>
 | 
						|
 | 
						|
#include <catch.hpp>
 | 
						|
 | 
						|
TEST_CASE("ARDUINOJSON_USE_LONG_LONG == 1") {
 | 
						|
  JsonDocument doc;
 | 
						|
  JsonObject root = doc.to<JsonObject>();
 | 
						|
 | 
						|
  root["A"] = 123456789123456789;
 | 
						|
  root["B"] = 987654321987654321;
 | 
						|
 | 
						|
  std::string json;
 | 
						|
  serializeJson(doc, json);
 | 
						|
 | 
						|
  REQUIRE(json == "{\"A\":123456789123456789,\"B\":987654321987654321}");
 | 
						|
}
 |