mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - arduinojson.org
 | |
| // Copyright Benoit Blanchon 2014-2020
 | |
| // MIT License
 | |
| 
 | |
| #include <ArduinoJson.h>
 | |
| #include <stdint.h>
 | |
| #include <catch.hpp>
 | |
| 
 | |
| TEST_CASE("JsonVariant::add()") {
 | |
|   DynamicJsonDocument doc(4096);
 | |
|   JsonVariant var = doc.to<JsonVariant>();
 | |
| 
 | |
|   SECTION("integer") {
 | |
|     var.add(42);
 | |
| 
 | |
|     REQUIRE(var.as<std::string>() == "[42]");
 | |
|   }
 | |
| 
 | |
|   SECTION("const char*") {
 | |
|     var.add("hello");
 | |
| 
 | |
|     REQUIRE(var.as<std::string>() == "[\"hello\"]");
 | |
|   }
 | |
| 
 | |
|   SECTION("std::string") {
 | |
|     var.add(std::string("hello"));
 | |
| 
 | |
|     REQUIRE(var.as<std::string>() == "[\"hello\"]");
 | |
|   }
 | |
| }
 |