mirror of
https://github.com/boostorg/function.git
synced 2026-01-26 00:42:22 +01:00
12 lines
185 B
C++
12 lines
185 B
C++
#define BOOST_TEST_MAIN
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
BOOST_AUTO_TEST_SUITE( ubsan_tests )
|
|
|
|
BOOST_AUTO_TEST_CASE( test1 )
|
|
{
|
|
BOOST_CHECK(true);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|