From 8734626b2c6fc36acc59e0d7bf7e51d4cff719de Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 23 Mar 2025 18:09:16 +0000 Subject: Use typed collections for apply/applyOne --- test/test-collection.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'test') diff --git a/test/test-collection.cpp b/test/test-collection.cpp index 7fadcf9..5aae9f0 100644 --- a/test/test-collection.cpp +++ b/test/test-collection.cpp @@ -21,6 +21,12 @@ public: return false; } + [[nodiscard]] virtual bool + yes() const + { + return true; + } + unsigned int total {0}; }; @@ -137,6 +143,8 @@ BOOST_AUTO_TEST_SUITE_END() using TestUniqueCollection = UniqueCollection; BOOST_TEST_DONT_PRINT_LOG_VALUE(TestUniqueCollection::Objects::const_iterator) BOOST_TEST_DONT_PRINT_LOG_VALUE(TestUniqueCollection::Objects::const_reverse_iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestUniqueCollection::Objects::iterator) +BOOST_TEST_DONT_PRINT_LOG_VALUE(TestUniqueCollection::Objects::reverse_iterator) BOOST_FIXTURE_TEST_SUITE(utc, TestUniqueCollection) @@ -204,6 +212,26 @@ BOOST_AUTO_TEST_CASE(no_others) emplace(std::make_unique()); } +BOOST_AUTO_TEST_CASE(applyAll) +{ + create(); + BOOST_CHECK_EQUAL(0, apply(&Base::add)); + BOOST_CHECK_EQUAL(1, apply(&Base::add)); + create(); + BOOST_CHECK_EQUAL(1, apply(&Base::add)); + BOOST_CHECK_EQUAL(2, apply(&Base::add)); +} + +BOOST_AUTO_TEST_CASE(applyOneType) +{ + create(); + BOOST_CHECK_EQUAL(objects.end(), applyOne(&Base::yes)); + BOOST_CHECK_EQUAL(objects.begin(), applyOne(&Base::yes)); + create(); + BOOST_CHECK_EQUAL(objects.begin() + 1, applyOne(&Base::yes)); + BOOST_CHECK_EQUAL(objects.begin(), applyOne(&Base::yes)); +} + BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_CASE(wrapped_ptr_file_cons) -- cgit v1.2.3