1
0
forked from fsfw/fsfw

move container retvals to namespace

This commit is contained in:
2022-11-15 10:01:37 +01:00
parent 1b8fc2af19
commit c013fcc1f5
6 changed files with 34 additions and 27 deletions

View File

@ -31,7 +31,7 @@ TEST_CASE("FixedArrayList Tests", "[containers]") {
for (auto i = 1; i < 260; i++) {
REQUIRE(list.insert(i) == static_cast<int>(returnvalue::OK));
}
REQUIRE(list.insert(260) == static_cast<int>(ArrayList<uint32_t, uint16_t>::FULL));
REQUIRE(list.insert(260) == static_cast<int>(containers::LIST_FULL));
list.clear();
REQUIRE(list.size == 0);
}