parent
9b79c635f8
commit
ed160fbbe4
3 changed files with 27 additions and 0 deletions
@ -0,0 +1,10 @@ |
||||
#define BOOST_TEST_DYN_LINK |
||||
#define BOOST_TEST_MODULE "MesonTest" |
||||
#define BOOST_TEST_MAIN |
||||
#include <boost/test/unit_test.hpp> |
||||
|
||||
BOOST_AUTO_TEST_CASE(m_test) { |
||||
int x = 2+2; |
||||
BOOST_CHECK(true); |
||||
BOOST_CHECK_EQUAL(x, 4); |
||||
} |
Loading…
Reference in new issue