Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:52:41

0001 //  (C) Copyright Gennadiy Rozental 2001.
0002 //  Distributed under the Boost Software License, Version 1.0.
0003 //  (See accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 //  See http://www.boost.org/libs/test for the library home page.
0007 //
0008 //  File        : $RCSfile$
0009 //
0010 //  Version     : $Revision: 74640 $
0011 //
0012 //  Description : defines auto_test_unit_registrar
0013 // ***************************************************************************
0014 
0015 #ifndef BOOST_TEST_TREE_AUTO_REGISTRATION_HPP_100211GER
0016 #define BOOST_TEST_TREE_AUTO_REGISTRATION_HPP_100211GER
0017 
0018 // Boost.Test
0019 #include <boost/test/detail/config.hpp>
0020 #include <boost/test/tree/decorator.hpp>
0021 #include <boost/test/tree/test_unit.hpp>
0022 
0023 // STL
0024 #include <list>
0025 
0026 #include <boost/test/detail/suppress_warnings.hpp>
0027 
0028 //____________________________________________________________________________//
0029 
0030 namespace boost {
0031 namespace unit_test {
0032 namespace ut_detail {
0033 
0034 // ************************************************************************** //
0035 // **************           auto_test_unit_registrar           ************** //
0036 // ************************************************************************** //
0037 
0038 struct BOOST_TEST_DECL auto_test_unit_registrar {
0039     // Constructors
0040                 auto_test_unit_registrar( test_case* tc, decorator::collector_t& decorators, counter_t exp_fail = 0 );
0041     explicit    auto_test_unit_registrar( const_string ts_name, const_string ts_file, std::size_t ts_line, decorator::collector_t& decorators );
0042     explicit    auto_test_unit_registrar( test_unit_generator const& tc_gen, decorator::collector_t& decorators );
0043     explicit    auto_test_unit_registrar( boost::shared_ptr<test_unit_generator>  tc_gen, decorator::collector_t& decorators );
0044     explicit    auto_test_unit_registrar( int );
0045 };
0046 
0047 } // namespace ut_detail
0048 } // namespace unit_test
0049 } // namespace boost
0050 
0051 #include <boost/test/detail/enable_warnings.hpp>
0052 
0053 #endif // BOOST_TEST_TREE_AUTO_REGISTRATION_HPP_100211GER
0054