mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-10-31 22:51:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			327 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			327 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #define ARDUINOJSON_USE_DOUBLE 1
 | |
| #include <ArduinoJson.h>
 | |
| 
 | |
| #include <catch.hpp>
 | |
| 
 | |
| TEST_CASE("ARDUINOJSON_USE_DOUBLE == 1") {
 | |
|   JsonDocument 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}");
 | |
| }
 |