mirror of
https://github.com/boostorg/test.git
synced 2026-01-31 20:52:10 +00:00
11 lines
173 B
C++
11 lines
173 B
C++
#define BOOST_TEST_MODULE My Test
|
|
#include <boost/test/included/unit_test.hpp>
|
|
|
|
BOOST_AUTO_TEST_CASE(first_test)
|
|
{
|
|
BOOST_TEST(true);
|
|
|
|
int i = 1;
|
|
BOOST_TEST(i == 1);
|
|
}
|