observer.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // (C) Copyright Gennadiy Rozental 2001.
  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. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. //!@file
  8. //!@brief defines abstract interface for test observer
  9. // ***************************************************************************
  10. #ifndef BOOST_TEST_TEST_OBSERVER_HPP_021005GER
  11. #define BOOST_TEST_TEST_OBSERVER_HPP_021005GER
  12. // Boost.Test
  13. #include <boost/test/detail/fwd_decl.hpp>
  14. #include <boost/test/detail/global_typedef.hpp>
  15. #include <boost/test/detail/config.hpp>
  16. #include <boost/test/detail/suppress_warnings.hpp>
  17. //____________________________________________________________________________//
  18. namespace boost {
  19. namespace unit_test {
  20. // ************************************************************************** //
  21. // ************** test_observer ************** //
  22. // ************************************************************************** //
  23. class BOOST_TEST_DECL test_observer {
  24. public:
  25. // test observer interface
  26. virtual void test_start( counter_t /* test_cases_amount */ ) {}
  27. virtual void test_finish() {}
  28. virtual void test_aborted() {}
  29. virtual void test_unit_start( test_unit const& ) {}
  30. virtual void test_unit_finish( test_unit const&, unsigned long /* elapsed */ ) {}
  31. virtual void test_unit_skipped( test_unit const& tu, const_string ) { test_unit_skipped( tu ); }
  32. virtual void test_unit_skipped( test_unit const& ) {} ///< backward compatibility
  33. virtual void test_unit_aborted( test_unit const& ) {}
  34. virtual void assertion_result( unit_test::assertion_result ar )
  35. {
  36. switch( ar ) {
  37. case AR_PASSED: assertion_result( true ); break;
  38. case AR_FAILED: assertion_result( false ); break;
  39. case AR_TRIGGERED: break;
  40. default: break;
  41. }
  42. }
  43. virtual void exception_caught( execution_exception const& ) {}
  44. virtual int priority() { return 0; }
  45. protected:
  46. // depracated now
  47. virtual void assertion_result( bool /* passed */ ) {}
  48. BOOST_TEST_PROTECTED_VIRTUAL ~test_observer() {}
  49. };
  50. } // namespace unit_test
  51. } // namespace boost
  52. #include <boost/test/detail/enable_warnings.hpp>
  53. #endif // BOOST_TEST_TEST_OBSERVER_HPP_021005GER