mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-10-30 22:21:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			733 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			733 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // ArduinoJson - https://arduinojson.org
 | |
| // Copyright © 2014-2024, Benoit BLANCHON
 | |
| // MIT License
 | |
| 
 | |
| #include <ArduinoJson.h>
 | |
| #include <catch.hpp>
 | |
| 
 | |
| TEST_CASE("JsonArray::begin()/end()") {
 | |
|   SECTION("Non null JsonArray") {
 | |
|     JsonDocument doc;
 | |
|     JsonArray array = doc.to<JsonArray>();
 | |
|     array.add(12);
 | |
|     array.add(34);
 | |
| 
 | |
|     auto it = array.begin();
 | |
|     auto end = array.end();
 | |
| 
 | |
|     REQUIRE(end != it);
 | |
|     REQUIRE(12 == it->as<int>());
 | |
|     REQUIRE(12 == static_cast<int>(*it));
 | |
|     ++it;
 | |
|     REQUIRE(end != it);
 | |
|     REQUIRE(34 == it->as<int>());
 | |
|     REQUIRE(34 == static_cast<int>(*it));
 | |
|     ++it;
 | |
|     REQUIRE(end == it);
 | |
|   }
 | |
| 
 | |
|   SECTION("Null JsonArray") {
 | |
|     JsonArray array;
 | |
| 
 | |
|     REQUIRE(array.begin() == array.end());
 | |
|   }
 | |
| }
 |