fixture.hpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 fixture interface and object makers
  12. // ***************************************************************************
  13. #ifndef BOOST_TEST_TREE_FIXTURE_HPP_100311GER
  14. #define BOOST_TEST_TREE_FIXTURE_HPP_100311GER
  15. // Boost.Test
  16. #include <boost/test/detail/config.hpp>
  17. // Boost
  18. #include <boost/shared_ptr.hpp>
  19. #include <boost/scoped_ptr.hpp>
  20. #include <boost/function/function0.hpp>
  21. #include <boost/test/detail/suppress_warnings.hpp>
  22. //____________________________________________________________________________//
  23. namespace boost {
  24. namespace unit_test {
  25. // ************************************************************************** //
  26. // ************** test_unit_fixture ************** //
  27. // ************************************************************************** //
  28. class BOOST_TEST_DECL test_unit_fixture {
  29. public:
  30. virtual ~test_unit_fixture() {}
  31. // Fixture interface
  32. virtual void setup() = 0;
  33. virtual void teardown() = 0;
  34. };
  35. typedef shared_ptr<test_unit_fixture> test_unit_fixture_ptr;
  36. // ************************************************************************** //
  37. // ************** class_based_fixture ************** //
  38. // ************************************************************************** //
  39. template<typename F, typename Arg=void>
  40. class class_based_fixture : public test_unit_fixture {
  41. public:
  42. // Constructor
  43. explicit class_based_fixture( Arg const& arg ) : m_inst(), m_arg( arg ) {}
  44. private:
  45. // Fixture interface
  46. virtual void setup() { m_inst.reset( new F( m_arg ) ); }
  47. virtual void teardown() { m_inst.reset(); }
  48. // Data members
  49. scoped_ptr<F> m_inst;
  50. Arg m_arg;
  51. };
  52. //____________________________________________________________________________//
  53. template<typename F>
  54. class class_based_fixture<F,void> : public test_unit_fixture {
  55. public:
  56. // Constructor
  57. class_based_fixture() : m_inst( 0 ) {}
  58. private:
  59. // Fixture interface
  60. virtual void setup() { m_inst.reset( new F ); }
  61. virtual void teardown() { m_inst.reset(); }
  62. // Data members
  63. scoped_ptr<F> m_inst;
  64. };
  65. //____________________________________________________________________________//
  66. // ************************************************************************** //
  67. // ************** function_based_fixture ************** //
  68. // ************************************************************************** //
  69. class function_based_fixture : public test_unit_fixture {
  70. public:
  71. // Constructor
  72. function_based_fixture( boost::function<void ()> const& setup_, boost::function<void ()> const& teardown_ )
  73. : m_setup( setup_ )
  74. , m_teardown( teardown_ )
  75. {
  76. }
  77. private:
  78. // Fixture interface
  79. virtual void setup() { if( m_setup ) m_setup(); }
  80. virtual void teardown() { if( m_teardown ) m_teardown(); }
  81. // Data members
  82. boost::function<void ()> m_setup;
  83. boost::function<void ()> m_teardown;
  84. };
  85. } // namespace unit_test
  86. } // namespace boost
  87. #include <boost/test/detail/enable_warnings.hpp>
  88. #endif // BOOST_TEST_TREE_FIXTURE_HPP_100311GER