mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			772 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			772 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - https://arduinojson.org
 | 
						|
// Copyright © 2014-2023, Benoit BLANCHON
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <catch.hpp>
 | 
						|
 | 
						|
TEST_CASE("JsonArray::nesting()") {
 | 
						|
  DynamicJsonDocument doc(4096);
 | 
						|
  JsonArray arr = doc.to<JsonArray>();
 | 
						|
 | 
						|
  SECTION("return 0 if uninitialized") {
 | 
						|
    JsonArray unitialized;
 | 
						|
    REQUIRE(unitialized.nesting() == 0);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("returns 1 for empty array") {
 | 
						|
    REQUIRE(arr.nesting() == 1);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("returns 1 for flat array") {
 | 
						|
    arr.add("hello");
 | 
						|
    REQUIRE(arr.nesting() == 1);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("returns 2 with nested array") {
 | 
						|
    arr.createNestedArray();
 | 
						|
    REQUIRE(arr.nesting() == 2);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("returns 2 with nested object") {
 | 
						|
    arr.createNestedObject();
 | 
						|
    REQUIRE(arr.nesting() == 2);
 | 
						|
  }
 | 
						|
}
 |