global_fixture.hpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 : $RCSfile$
  8. //
  9. // Version : $Revision: 74640 $
  10. //
  11. // Description : defines global_fixture
  12. // ***************************************************************************
  13. #ifndef BOOST_TEST_TREE_GLOBAL_FIXTURE_HPP_091911GER
  14. #define BOOST_TEST_TREE_GLOBAL_FIXTURE_HPP_091911GER
  15. // Boost.Test
  16. #include <boost/test/detail/config.hpp>
  17. #include <boost/test/detail/global_typedef.hpp>
  18. #include <boost/test/tree/observer.hpp>
  19. #include <boost/test/detail/suppress_warnings.hpp>
  20. //____________________________________________________________________________//
  21. namespace boost {
  22. namespace unit_test {
  23. // ************************************************************************** //
  24. // ************** global_fixture ************** //
  25. // ************************************************************************** //
  26. class BOOST_TEST_DECL global_fixture : public test_observer {
  27. public:
  28. // Constructor
  29. global_fixture();
  30. };
  31. //____________________________________________________________________________//
  32. namespace ut_detail {
  33. template<typename F>
  34. struct global_fixture_impl : public global_fixture {
  35. // Constructor
  36. global_fixture_impl() : m_fixture( 0 ) {}
  37. // test observer interface
  38. virtual void test_start( counter_t ) { m_fixture = new F; }
  39. virtual void test_finish() { delete m_fixture; m_fixture = 0; }
  40. virtual void test_aborted() { delete m_fixture; m_fixture = 0; }
  41. private:
  42. // Data members
  43. F* m_fixture;
  44. };
  45. } // namespace ut_detail
  46. } // namespace unit_test
  47. } // namespace boost
  48. #include <boost/test/detail/enable_warnings.hpp>
  49. #endif // BOOST_TEST_TREE_GLOBAL_FIXTURE_HPP_091911GER