You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
726 B
30 lines
726 B
// ArduinoJson - https://arduinojson.org |
|
// Copyright © 2014-2024, Benoit BLANCHON |
|
// MIT License |
|
|
|
#include <ArduinoJson/Memory/ResourceManager.hpp> |
|
#include <ArduinoJson/Memory/VariantPoolImpl.hpp> |
|
#include <ArduinoJson/Strings/StringAdapters.hpp> |
|
#include <catch.hpp> |
|
|
|
using namespace ArduinoJson::detail; |
|
|
|
TEST_CASE("ResourceManager::clear()") { |
|
ResourceManager resources; |
|
|
|
SECTION("Discards allocated variants") { |
|
resources.allocSlot(); |
|
|
|
resources.clear(); |
|
REQUIRE(resources.size() == 0); |
|
} |
|
|
|
SECTION("Discards allocated strings") { |
|
resources.saveString(adaptString("123456789")); |
|
REQUIRE(resources.size() == sizeofString(9)); |
|
|
|
resources.clear(); |
|
|
|
REQUIRE(resources.size() == 0); |
|
} |
|
}
|
|
|