mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	Add operator<<(std::ostream&, const JsonString&)
				
					
				
			This commit is contained in:
		| @@ -5,6 +5,8 @@ | ||||
| #include <ArduinoJson.h> | ||||
| #include <catch.hpp> | ||||
|  | ||||
| #include <sstream> | ||||
|  | ||||
| TEST_CASE("JsonString") { | ||||
|   SECTION("Default constructor creates a null JsonString") { | ||||
|     JsonString s; | ||||
| @@ -74,4 +76,10 @@ TEST_CASE("JsonString") { | ||||
|     CHECK(a == b); | ||||
|     CHECK_FALSE(a != b); | ||||
|   } | ||||
|  | ||||
|   SECTION("std::stream") { | ||||
|     std::stringstream ss; | ||||
|     ss << JsonString("hello world!"); | ||||
|     CHECK(ss.str() == "hello world!"); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user