Update contrib.
1 // (C) Copyright Gennadiy Rozental 2005.
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)
6 // See http://www.boost.org/libs/test for the library home page.
8 // File : $RCSfile: logged_expectations.hpp,v $
10 // Version : $Revision: 1.2 $
12 // Description : Facilities to perform interaction based testng of logged expectations
13 // ***************************************************************************
15 #ifndef BOOST_TEST_LOGGED_EXPECTATIONS_HPP_120905GER
16 #define BOOST_TEST_LOGGED_EXPECTATIONS_HPP_120905GER
19 #include <boost/test/detail/config.hpp>
20 #include <boost/test/detail/unit_test_parameters.hpp>
21 #include <boost/test/utils/callback.hpp>
23 #include <boost/test/detail/suppress_warnings.hpp>
25 //____________________________________________________________________________//
27 // ************************************************************************** //
28 // ************** BOOST_TEST_LOGGED_EXPECTATIONS ************** //
29 // ************************************************************************** //
31 #define BOOST_TEST_LOGGED_EXPECTATIONS( test_name ) \
32 struct test_name : public BOOST_AUTO_TEST_CASE_FIXTURE \
33 { void test_method(); }; \
35 static void BOOST_AUTO_TC_INVOKER( test_name )() \
38 ::boost::itest::logged_expectations( \
39 boost::bind( &test_name::test_method, t ), \
40 BOOST_STRINGIZE(test_name) ".elog", \
41 !::boost::unit_test::runtime_config::save_pattern() ); \
44 struct BOOST_AUTO_TC_UNIQUE_ID( test_name ) {}; \
46 BOOST_AUTO_TC_REGISTRAR( test_name )( \
47 boost::unit_test::make_test_case( \
48 &BOOST_AUTO_TC_INVOKER( test_name ), #test_name ), \
49 boost::unit_test::ut_detail::auto_tc_exp_fail< \
50 BOOST_AUTO_TC_UNIQUE_ID( test_name )>::value ); \
52 void test_name::test_method() \
59 // ************************************************************************** //
60 // ************** logged expectations test ************** //
61 // ************************************************************************** //
64 logged_expectations( unit_test::callback0<> const& F,
65 unit_test::const_string log_file_name,
66 bool test_or_log = true );
72 #include <boost/test/detail/enable_warnings.hpp>
74 // ***************************************************************************
77 // $Log: logged_expectations.hpp,v $
78 // Revision 1.2 2005/12/20 23:50:13 rogeeff
79 // unit_test.hpp removed
81 // Revision 1.1 2005/12/14 05:09:21 rogeeff
82 // interraction based testing is introdused
84 // ***************************************************************************
86 #endif // BOOST_TEST_LOGGED_EXPECTATIONS_HPP_120905GER