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