2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-23 18:12:12 +00:00
Files
test/example/unit_test_example1.cpp
Gennadiy Rozental 675053569d *** empty log message ***
[SVN r17358]
2003-02-13 08:47:12 +00:00

31 lines
1.0 KiB
C++

// (C) Copyright Gennadiy Rozental & Ullrich Koethe 2001.
// Permission to copy, use, modify, sell and distribute this software
// is granted provided this copyright notice appears in all copies.
// This software is provided "as is" without express or implied warranty,
// and with no claim as to its suitability for any purpose.
//
// See http://www.boost.org for most recent version including documentation.
// Boost.Test
#include <boost/test/unit_test.hpp>
using boost::unit_test_framework::test_suite;
// most frequently you implement test cases as a free functions
void free_test_function()
{
// reports 'error in "free_test_function": test 2 == 1 failed'
BOOST_CHECK(2 == 1); // non-critical test => continue after failure
}
test_suite*
init_unit_test_suite( int argc, char * argv[] ) {
test_suite* test= BOOST_TEST_SUITE( "Unit test example 1" );
// this example will pass cause we know ahead of time number of expected failures
test->add( BOOST_TEST_CASE( &free_test_function ), 1 /* expected one error */ );
return test;
}
// EOF