// (C) Copyright Gennadiy Rozental 2001-2004. // (C) Copyright Beman Dawes 2000. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/test for the library home page. // // File : $RCSfile$ // // Version : $Revision$ // // Description : test failures reported by BOOST_CHECK. Should fail during run. // *************************************************************************** // Boost.Test #include int test_main( int, char*[] ) // note the name { int v = 1; BOOST_CHECK( v == 2 ); BOOST_CHECK( 2 == v ); return 0; } //____________________________________________________________________________// // *************************************************************************** // Revision History : // // $Log$ // Revision 1.12 2004/05/21 06:26:10 rogeeff // licence update // // Revision 1.11 2003/12/01 00:42:38 rogeeff // prerelease cleaning // // *************************************************************************** // EOF