mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 12:02:14 +02:00
27 lines
606 B
C++
27 lines
606 B
C++
![]() |
// ArduinoJson - arduinojson.org
|
||
|
// Copyright Benoit Blanchon 2014-2019
|
||
|
// MIT License
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
#include <catch.hpp>
|
||
|
|
||
|
using namespace ARDUINOJSON_NAMESPACE;
|
||
|
|
||
|
TEST_CASE("MemberProxy::operator==()") {
|
||
|
DynamicJsonDocument doc(4096);
|
||
|
|
||
|
SECTION("same values") {
|
||
|
doc["key1"] = "value";
|
||
|
doc["key2"] = "value";
|
||
|
REQUIRE(doc["key1"] == doc["key2"]);
|
||
|
REQUIRE_FALSE(doc["key1"] != doc["key2"]);
|
||
|
}
|
||
|
|
||
|
SECTION("different values") {
|
||
|
doc["key1"] = "value1";
|
||
|
doc["key2"] = "value2";
|
||
|
REQUIRE_FALSE(doc["key1"] == doc["key2"]);
|
||
|
REQUIRE(doc["key1"] != doc["key2"]);
|
||
|
}
|
||
|
}
|