Tests: replace constants with sizeofString(n)

This commit is contained in:
Benoit Blanchon
2023-04-07 14:43:16 +02:00
parent 5e0e35615c
commit e9850152a7
18 changed files with 174 additions and 148 deletions

View File

@ -6,6 +6,7 @@
#include <catch.hpp>
using ArduinoJson::detail::sizeofArray;
using ArduinoJson::detail::sizeofString;
TEST_CASE("JsonDocument::overflowed()") {
SECTION("returns false on a fresh object") {
@ -32,7 +33,7 @@ TEST_CASE("JsonDocument::overflowed()") {
}
SECTION("returns false after a successful string copy") {
JsonDocument doc(sizeofArray(1) + 8);
JsonDocument doc(sizeofArray(1) + sizeofString(7));
doc.add(std::string("example"));
CHECK(doc.overflowed() == false);
}
@ -50,7 +51,7 @@ TEST_CASE("JsonDocument::overflowed()") {
}
SECTION("returns false after a successful deserialization") {
JsonDocument doc(sizeofArray(1) + 8);
JsonDocument doc(sizeofArray(1) + sizeofString(7));
deserializeJson(doc, "[\"example\"]");
CHECK(doc.overflowed() == false);
}