fix doc example typo
[boost.git] / boost / test / test_observer.hpp
blob4ae152c7b62b2cd2a9f374274b0984f3c225b294
1 // (C) Copyright Gennadiy Rozental 2005-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.
7 //
8 // File : $RCSfile$
9 //
10 // Version : $Revision$
12 // Description : defines abstract interface for test observer
13 // ***************************************************************************
15 #ifndef BOOST_TEST_TEST_OBSERVER_HPP_021005GER
16 #define BOOST_TEST_TEST_OBSERVER_HPP_021005GER
18 // Boost.Test
19 #include <boost/test/detail/fwd_decl.hpp>
20 #include <boost/test/detail/global_typedef.hpp>
21 #include <boost/test/detail/config.hpp>
23 #include <boost/test/detail/suppress_warnings.hpp>
25 //____________________________________________________________________________//
27 namespace boost {
29 namespace unit_test {
31 // ************************************************************************** //
32 // ************** test_observer ************** //
33 // ************************************************************************** //
35 class BOOST_TEST_DECL test_observer {
36 public:
37 // test observer interface
38 virtual void test_start( counter_t /* test_cases_amount */ ) {}
39 virtual void test_finish() {}
40 virtual void test_aborted() {}
42 virtual void test_unit_start( test_unit const& ) {}
43 virtual void test_unit_finish( test_unit const&, unsigned long /* elapsed */ ) {}
44 virtual void test_unit_skipped( test_unit const& ) {}
45 virtual void test_unit_aborted( test_unit const& ) {}
47 virtual void assertion_result( bool /* passed */ ) {}
48 virtual void exception_caught( execution_exception const& ) {}
50 virtual int priority() { return 0; }
52 protected:
53 BOOST_TEST_PROTECTED_VIRTUAL ~test_observer() {}
56 } // unit_test
58 } // namespace boost
60 //____________________________________________________________________________//
62 #include <boost/test/detail/enable_warnings.hpp>
64 #endif // BOOST_TEST_TEST_OBSERVER_HPP_021005GER