mirror of
https://github.com/boostorg/function.git
synced 2026-02-03 21:55:11 +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()
|