1 // (C) Copyright Raffi Enficiaud 2014. 2 // Distributed under the Boost Software License, Version 1.0. 3 // (See accompanying file LICENSE_1_0.txt or copy at 4 // http://www.boost.org/LICENSE_1_0.txt) 5 6 // See http://www.boost.org/libs/test for the library home page. 7 8 //[example_code 9 #define BOOST_TEST_MODULE boost_test_bitwise 10 #include <boost/test/included/unit_test.hpp> 11 #include <sstream> 12 BOOST_AUTO_TEST_CASE(test_bitwise)13BOOST_AUTO_TEST_CASE(test_bitwise) 14 { 15 namespace tt = boost::test_tools; 16 int a = 0xAB; 17 BOOST_TEST( a == (a & ~1), tt::bitwise() ); 18 BOOST_TEST( a == a + 1, tt::bitwise() ); 19 BOOST_TEST( a != a + 1, tt::bitwise() ); 20 int b = 0x88; 21 BOOST_TEST( a == b, tt::bitwise() ); 22 } 23 //] 24