mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 12:02:14 +02:00
25 lines
564 B
C++
25 lines
564 B
C++
// ArduinoJson - arduinojson.org
|
|
// Copyright Benoit Blanchon 2014-2020
|
|
// 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);
|
|
}
|
|
}
|