]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/test/test_framework_init_observer.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / test / test_framework_init_observer.hpp
1 // (c) Copyright Raffi Enficiaud 2017.
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 /// @file
9 /// @brief Defines an observer that monitors the init of the unit test framework
10 // ***************************************************************************
11
12 #ifndef BOOST_TEST_FRAMEWORK_INIT_OBSERVER_HPP_071894GER
13 #define BOOST_TEST_FRAMEWORK_INIT_OBSERVER_HPP_071894GER
14
15 // Boost.Test
16 #include <boost/test/tree/observer.hpp>
17
18 #include <boost/test/detail/global_typedef.hpp>
19 #include <boost/test/detail/fwd_decl.hpp>
20
21 #include <boost/test/detail/suppress_warnings.hpp>
22
23 //____________________________________________________________________________//
24
25 namespace boost {
26 namespace unit_test {
27
28 // ************************************************************************** //
29 /// @brief Monitors the init of the framework
30 ///
31 /// This class collects the state of the init/termination of the unit test framework.
32 ///
33 /// @see boost::unit_test::test_observer
34 class BOOST_TEST_DECL framework_init_observer_t : public test_observer {
35 public:
36
37 virtual void test_start( counter_t );
38
39 virtual void assertion_result( unit_test::assertion_result );
40 virtual void exception_caught( execution_exception const& );
41 virtual void test_aborted();
42
43 virtual int priority() { return 0; }
44
45 void clear();
46
47 /// Indicates if a failure has been recorded so far
48 bool has_failed( ) const;
49
50 /// Singleton pattern
51 BOOST_TEST_SINGLETON_CONS( framework_init_observer_t )
52 };
53
54 BOOST_TEST_SINGLETON_INST( framework_init_observer )
55
56 } // namespace unit_test
57 } // namespace boost
58
59 #include <boost/test/detail/enable_warnings.hpp>
60
61 #endif // BOOST_TEST_FRAMEWORK_INIT_OBSERVER_HPP_071894GER