forked from bblanchon/ArduinoJson
Added serializeMsgPack()
and measureMsgPack()
(closes #358)
This commit is contained in:
@ -38,7 +38,13 @@ TEST_CASE("DeserializationError") {
|
||||
TEST_BOOLIFICATION(NotSupported, true);
|
||||
}
|
||||
|
||||
SECTION("ostream") {
|
||||
SECTION("ostream code") {
|
||||
std::stringstream s;
|
||||
s << DeserializationError(DeserializationError::InvalidInput);
|
||||
REQUIRE(s.str() == "InvalidInput");
|
||||
}
|
||||
|
||||
SECTION("ostream code") {
|
||||
std::stringstream s;
|
||||
s << DeserializationError::InvalidInput;
|
||||
REQUIRE(s.str() == "InvalidInput");
|
||||
|
Reference in New Issue
Block a user