mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 00:32:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			651 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			651 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - https://arduinojson.org
 | |
| // Copyright © 2014-2023, Benoit BLANCHON
 | |
| // MIT License
 | |
| 
 | |
| #include <ArduinoJson.h>
 | |
| #include <catch.hpp>
 | |
| 
 | |
| TEST_CASE("JsonDocument::nesting()") {
 | |
|   DynamicJsonDocument doc(4096);
 | |
| 
 | |
|   SECTION("return 0 if uninitialized") {
 | |
|     REQUIRE(doc.nesting() == 0);
 | |
|   }
 | |
| 
 | |
|   SECTION("returns 0 for string") {
 | |
|     JsonVariant var = doc.to<JsonVariant>();
 | |
|     var.set("hello");
 | |
|     REQUIRE(doc.nesting() == 0);
 | |
|   }
 | |
| 
 | |
|   SECTION("returns 1 for empty object") {
 | |
|     doc.to<JsonObject>();
 | |
|     REQUIRE(doc.nesting() == 1);
 | |
|   }
 | |
| 
 | |
|   SECTION("returns 1 for empty array") {
 | |
|     doc.to<JsonArray>();
 | |
|     REQUIRE(doc.nesting() == 1);
 | |
|   }
 | |
| }
 |