mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			310 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			310 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <ArduinoJson.h>
 | |
| 
 | |
| #include <catch.hpp>
 | |
| #include <string>
 | |
| 
 | |
| TEST_CASE("C++20 smoke test") {
 | |
|   StaticJsonDocument<128> doc;
 | |
| 
 | |
|   deserializeJson(doc, "{\"hello\":\"world\"}");
 | |
|   REQUIRE(doc["hello"] == "world");
 | |
| 
 | |
|   std::string json;
 | |
|   serializeJson(doc, json);
 | |
|   REQUIRE(json == "{\"hello\":\"world\"}");
 | |
| }
 |