mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <ArduinoJson.h>
 | 
						|
 | 
						|
#include <catch.hpp>
 | 
						|
#include <string>
 | 
						|
 | 
						|
TEST_CASE("C++20 smoke test") {
 | 
						|
  JsonDocument doc;
 | 
						|
 | 
						|
  deserializeJson(doc, "{\"hello\":\"world\"}");
 | 
						|
  REQUIRE(doc["hello"] == "world");
 | 
						|
 | 
						|
  std::string json;
 | 
						|
  serializeJson(doc, json);
 | 
						|
  REQUIRE(json == "{\"hello\":\"world\"}");
 | 
						|
}
 |