added test for flyweight::operator*

This commit is contained in:
joaquintides
2023-03-17 17:09:47 +01:00
parent 0b5dd8c943
commit 32ef15c5be

View File

@@ -92,6 +92,7 @@ void test_basic_template(
/* identity of reference */
BOOST_TEST(&f1.get()==&c1.get());
BOOST_TEST(&(*f1)==&c1.get());
BOOST_TEST(f1.operator->()==&c1.get());
/* modifiers */