...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
BOOST_WARN_NE(left, right); BOOST_CHECK_NE(left, right); BOOST_REQUIRE_NE(left, right);
Check performed by these tools is the same as the one performed by
. The difference is that the matched values
are reported as well.
BOOST_<level>
( left != right )
Code |
---|
#define BOOST_TEST_MODULE example #include <boost/test/included/unit_test.hpp> BOOST_AUTO_TEST_CASE( test ) { int i = 3; int j = 3; BOOST_CHECK_NE( i, j ); } |
Output |
---|
>example Running 1 test case... test.cpp(10): error in "test": check i != j failed [3 == 3] *** 1 failures is detected in test suite "example" |
See also: