1 // (C) Copyright Gennadiy Rozental 2001-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 // *************************************************************************** 9 10 #ifndef BOOST_TEST_DYN_LINK 11 #define BOOST_TEST_DYN_LINK 12 #endif 13 #include <boost/test/unit_test.hpp> 14 using namespace boost::unit_test; 15 16 //____________________________________________________________________________// 17 18 BOOST_AUTO_TEST_SUITE( test_suite_1 ) 19 BOOST_AUTO_TEST_CASE(test_case_1)20BOOST_AUTO_TEST_CASE( test_case_1 ) 21 { 22 BOOST_TEST_MESSAGE( "Testing is in progress" ); 23 24 BOOST_CHECK( false ); 25 } 26 BOOST_AUTO_TEST_SUITE_END()27BOOST_AUTO_TEST_SUITE_END() 28 29 //____________________________________________________________________________// 30 31 bool 32 init_function() 33 { 34 // do your own initialization here 35 // if it successful return true 36 37 // But, you CAN'T use testing tools here 38 return true; 39 } 40 41 //____________________________________________________________________________// 42 43 int main(int argc,char * argv[])44main( int argc, char* argv[] ) 45 { 46 return ::boost::unit_test::unit_test_main( &init_function, argc, argv ); 47 } 48 49 //____________________________________________________________________________// 50