forked from bblanchon/ArduinoJson
RawJson()
accepts any kind of string and obeys to duplication rules
This commit is contained in:
@ -4,7 +4,6 @@
|
||||
|
||||
#include <ArduinoJson.h>
|
||||
#include <catch.hpp>
|
||||
#include <sstream>
|
||||
|
||||
using namespace ArduinoJson::TypeTraits;
|
||||
|
||||
@ -31,12 +30,6 @@ TEST_CASE("TypeTraits") {
|
||||
REQUIRE(static_cast<bool>(IsVariant<JsonVariant>::value));
|
||||
}
|
||||
|
||||
SECTION("IsString") {
|
||||
REQUIRE((IsString<const char*>::value));
|
||||
REQUIRE((IsString<std::string>::value));
|
||||
REQUIRE_FALSE((IsString<double>::value));
|
||||
}
|
||||
|
||||
SECTION("IsConst") {
|
||||
REQUIRE_FALSE((IsConst<char>::value));
|
||||
REQUIRE((IsConst<const char>::value));
|
||||
|
Reference in New Issue
Block a user