/
SoRusV
/
AquaController2
Обзор
Документация
Войти
/
SoRusV
/
AquaController2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libraries/ArduinoJson/test/JsonObject/containsKey.cpp
30 строк
714 B
Vteselkin
-add support libraries
29 окт 2020, 22:01
29 окт 2020, 22:01
b1654a8
Код
Авторство
О чём код?
// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2019 // MIT License #include <ArduinoJson.h> #include <catch.hpp> TEST_CASE("JsonObject::containsKey()") { DynamicJsonBuffer _jsonBuffer; JsonObject& _object = _jsonBuffer.createObject(); SECTION("ContainsKeyReturnsFalseForNonExistingKey") { _object.set("hello", 42); REQUIRE(false == _object.containsKey("world")); } SECTION("ContainsKeyReturnsTrueForDefinedValue") { _object.set("hello", 42); REQUIRE(true == _object.containsKey("hello")); } SECTION("ContainsKeyReturnsFalseAfterRemove") { _object.set("hello", 42); _object.remove("hello"); REQUIRE(false == _object.containsKey("hello")); } }