From 035299f23a9207bb521b19e2f77154c276cf3033 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Mar 2025 14:21:12 +0000 Subject: Other objects support in removeAll/clear removeAll requires a type that is one of Others, clear clears everything regardless of type. --- test/test-collection.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'test') diff --git a/test/test-collection.cpp b/test/test-collection.cpp index 0cd08d5..13df95c 100644 --- a/test/test-collection.cpp +++ b/test/test-collection.cpp @@ -143,6 +143,30 @@ BOOST_AUTO_TEST_CASE(move_assign) BOOST_CHECK(other.empty()); } +BOOST_AUTO_TEST_CASE(clearAll) +{ + create(); + create(); + emplace(std::make_unique()); + emplace(std::make_unique()); + + clear(); + BOOST_CHECK(objects.empty()); + BOOST_CHECK(std::get>(otherObjects).empty()); +} + +BOOST_AUTO_TEST_CASE(removeAllOfSub) +{ + create(); + create(); + emplace(std::make_unique()); + emplace(std::make_unique()); + + removeAll(); + BOOST_CHECK_EQUAL(objects.size(), 2); + BOOST_CHECK(std::get>(otherObjects).empty()); +} + BOOST_AUTO_TEST_SUITE_END() BOOST_FIXTURE_TEST_SUITE(btc, UniqueCollection) -- cgit v1.2.3