1 // (C) Copyright Gennadiy Rozental 2001-2008.
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.
10 // Version : $Revision$
12 // Description : defines specific version of execution monitor used to managed
13 // run unit of test cases. Translates execution exception into error level
14 // ***************************************************************************
16 #ifndef BOOST_TEST_UNIT_TEST_MONITOR_HPP_020905GER
17 #define BOOST_TEST_UNIT_TEST_MONITOR_HPP_020905GER
20 #include <boost/test/execution_monitor.hpp>
21 #include <boost/test/detail/fwd_decl.hpp>
22 #include <boost/test/utils/trivial_singleton.hpp>
23 #include <boost/test/utils/callback.hpp>
25 #include <boost/test/detail/suppress_warnings.hpp>
27 //____________________________________________________________________________//
33 // ************************************************************************** //
34 // ************** unit_test_monitor ************** //
35 // ************************************************************************** //
37 class BOOST_TEST_DECL unit_test_monitor_t
: public singleton
<unit_test_monitor_t
>, public execution_monitor
{
42 constructor_error
= -1,
43 unexpected_exception
= -2,
46 fatal_error
= -5, // includes both system and user
50 static bool is_critical_error( error_level e
) { return e
<= fatal_error
; }
53 error_level
execute_and_translate( test_case
const& );
56 BOOST_TEST_SINGLETON_CONS( unit_test_monitor_t
);
59 BOOST_TEST_SINGLETON_INST( unit_test_monitor
)
61 } // namespace unit_test
65 //____________________________________________________________________________//
67 #include <boost/test/detail/enable_warnings.hpp>
69 #endif // BOOST_TEST_UNIT_TEST_MONITOR_HPP_020905GER