2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-31 20:52:10 +00:00
Files
test/example/named_param_example.cpp
Gennadiy Rozental b699bf6715 ongoing progress
2014-12-28 06:30:17 -05:00

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);
}