Skip to content

Commit f24eb60

Browse files
Add tests for boost config
Add one test for the `BOOST_<level>_MESSAGE` macros Add one test for the `BOOST_AUTO_TEST_CASE_TEMPLATE`
1 parent 75c4d83 commit f24eb60

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

test/cfg/boost.cpp

+23-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include <boost/smart_ptr/scoped_array.hpp>
1818
#include <boost/thread/mutex.hpp>
1919
#include <boost/thread/lock_guard.hpp>
20+
#include <boost/test/unit_test.hpp>
2021

2122
BOOST_FORCEINLINE void boost_forceinline_test()
2223
{}
@@ -104,4 +105,25 @@ void lock_guard_finiteLifetime(boost::mutex& m)
104105
{
105106
// cppcheck-suppress unusedScopedObject
106107
boost::lock_guard<boost::mutex>{ m };
107-
}
108+
}
109+
110+
BOOST_AUTO_TEST_SUITE(my_auto_test_suite)
111+
112+
BOOST_AUTO_TEST_CASE(test_message_macros)
113+
{
114+
bool my_bool = false;
115+
BOOST_WARN_MESSAGE(my_bool, "warn");
116+
BOOST_CHECK_MESSAGE(my_bool, "check");
117+
BOOST_REQUIRE_MESSAGE(my_bool, "require");
118+
119+
BOOST_WARN_MESSAGE(my_bool, "my_bool was: " << my_bool);
120+
}
121+
122+
using test_types_w_tuples = std::tuple<int, long, unsigned char>;
123+
BOOST_AUTO_TEST_CASE_TEMPLATE(my_tuple_test, T, test_types_w_tuples)
124+
{
125+
// cppcheck-suppress valueFlowBailoutIncompleteVar
126+
BOOST_TEST(sizeof(T) == 4U);
127+
}
128+
129+
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)