mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			564 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			564 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - arduinojson.org
 | 
						|
// Copyright Benoit Blanchon 2014-2021
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <catch.hpp>
 | 
						|
 | 
						|
TEST_CASE("deserializeMsgPack() returns EmptyInput") {
 | 
						|
  StaticJsonDocument<100> doc;
 | 
						|
 | 
						|
  SECTION("from sized buffer") {
 | 
						|
    DeserializationError err = deserializeMsgPack(doc, "", 0);
 | 
						|
 | 
						|
    REQUIRE(err == DeserializationError::EmptyInput);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("from stream") {
 | 
						|
    std::istringstream input("");
 | 
						|
 | 
						|
    DeserializationError err = deserializeMsgPack(doc, input);
 | 
						|
 | 
						|
    REQUIRE(err == DeserializationError::EmptyInput);
 | 
						|
  }
 | 
						|
}
 |