sl@0
|
1 |
// (C) Copyright Gennadiy Rozental 2005.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0.
|
sl@0
|
3 |
// (See accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
4 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
5 |
|
sl@0
|
6 |
// See http://www.boost.org/libs/test for the library home page.
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// File : $RCSfile: framework.hpp,v $
|
sl@0
|
9 |
//
|
sl@0
|
10 |
// Version : $Revision: 1.5 $
|
sl@0
|
11 |
//
|
sl@0
|
12 |
// Description : defines framework interface
|
sl@0
|
13 |
// ***************************************************************************
|
sl@0
|
14 |
|
sl@0
|
15 |
#ifndef BOOST_TEST_FRAMEWORK_HPP_020805GER
|
sl@0
|
16 |
#define BOOST_TEST_FRAMEWORK_HPP_020805GER
|
sl@0
|
17 |
|
sl@0
|
18 |
// Boost.Test
|
sl@0
|
19 |
#include <boost/test/detail/global_typedef.hpp>
|
sl@0
|
20 |
#include <boost/test/detail/fwd_decl.hpp>
|
sl@0
|
21 |
#include <boost/test/utils/trivial_singleton.hpp>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <boost/test/detail/suppress_warnings.hpp>
|
sl@0
|
24 |
|
sl@0
|
25 |
// STL
|
sl@0
|
26 |
#include <stdexcept>
|
sl@0
|
27 |
|
sl@0
|
28 |
//____________________________________________________________________________//
|
sl@0
|
29 |
|
sl@0
|
30 |
namespace boost {
|
sl@0
|
31 |
|
sl@0
|
32 |
namespace unit_test {
|
sl@0
|
33 |
|
sl@0
|
34 |
// ************************************************************************** //
|
sl@0
|
35 |
// ************** framework ************** //
|
sl@0
|
36 |
// ************************************************************************** //
|
sl@0
|
37 |
|
sl@0
|
38 |
namespace framework {
|
sl@0
|
39 |
|
sl@0
|
40 |
// initialization
|
sl@0
|
41 |
BOOST_TEST_DECL void init( int argc, char* argv[] );
|
sl@0
|
42 |
|
sl@0
|
43 |
// mutation access methods
|
sl@0
|
44 |
BOOST_TEST_DECL void register_test_unit( test_case* tc );
|
sl@0
|
45 |
BOOST_TEST_DECL void register_test_unit( test_suite* ts );
|
sl@0
|
46 |
|
sl@0
|
47 |
BOOST_TEST_DECL void register_observer( test_observer& );
|
sl@0
|
48 |
BOOST_TEST_DECL void deregister_observer( test_observer& );
|
sl@0
|
49 |
BOOST_TEST_DECL void reset_observers();
|
sl@0
|
50 |
|
sl@0
|
51 |
BOOST_TEST_DECL master_test_suite_t& master_test_suite();
|
sl@0
|
52 |
|
sl@0
|
53 |
// constant access methods
|
sl@0
|
54 |
BOOST_TEST_DECL test_case const& current_test_case();
|
sl@0
|
55 |
#if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x530) )
|
sl@0
|
56 |
template<typename UnitType>
|
sl@0
|
57 |
UnitType const& get( test_unit_id id )
|
sl@0
|
58 |
{
|
sl@0
|
59 |
return static_cast<UnitType const&>( get( id, (test_unit_type)UnitType::type ) );
|
sl@0
|
60 |
}
|
sl@0
|
61 |
test_unit const& get( test_unit_id, test_unit_type );
|
sl@0
|
62 |
#else
|
sl@0
|
63 |
test_unit const& get( test_unit_id, test_unit_type );
|
sl@0
|
64 |
template<typename UnitType>
|
sl@0
|
65 |
UnitType const& get( test_unit_id id )
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return static_cast<UnitType const&>( get( id, (test_unit_type)UnitType::type ) );
|
sl@0
|
68 |
}
|
sl@0
|
69 |
#endif
|
sl@0
|
70 |
|
sl@0
|
71 |
// test initiation
|
sl@0
|
72 |
BOOST_TEST_DECL void run( test_unit_id = INV_TEST_UNIT_ID, bool continue_test = true );
|
sl@0
|
73 |
BOOST_TEST_DECL void run( test_unit const*, bool continue_test = true );
|
sl@0
|
74 |
|
sl@0
|
75 |
// public test events dispatchers
|
sl@0
|
76 |
BOOST_TEST_DECL void assertion_result( bool passed );
|
sl@0
|
77 |
BOOST_TEST_DECL void exception_caught( execution_exception const& );
|
sl@0
|
78 |
BOOST_TEST_DECL void test_unit_aborted( test_unit const& );
|
sl@0
|
79 |
|
sl@0
|
80 |
// ************************************************************************** //
|
sl@0
|
81 |
// ************** framework errors ************** //
|
sl@0
|
82 |
// ************************************************************************** //
|
sl@0
|
83 |
|
sl@0
|
84 |
struct internal_error : std::runtime_error {
|
sl@0
|
85 |
internal_error( const_string m ) : std::runtime_error( std::string( m.begin(), m.size() ) ) {}
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
struct setup_error : std::runtime_error {
|
sl@0
|
89 |
setup_error( const_string m ) : std::runtime_error( std::string( m.begin(), m.size() ) ) {}
|
sl@0
|
90 |
};
|
sl@0
|
91 |
|
sl@0
|
92 |
} // namespace framework
|
sl@0
|
93 |
|
sl@0
|
94 |
} // unit_test
|
sl@0
|
95 |
|
sl@0
|
96 |
} // namespace boost
|
sl@0
|
97 |
|
sl@0
|
98 |
//____________________________________________________________________________//
|
sl@0
|
99 |
|
sl@0
|
100 |
#include <boost/test/detail/enable_warnings.hpp>
|
sl@0
|
101 |
|
sl@0
|
102 |
// ***************************************************************************
|
sl@0
|
103 |
// Revision History :
|
sl@0
|
104 |
//
|
sl@0
|
105 |
// $Log: framework.hpp,v $
|
sl@0
|
106 |
// Revision 1.5 2006/03/19 07:27:52 rogeeff
|
sl@0
|
107 |
// streamline test setup error message
|
sl@0
|
108 |
//
|
sl@0
|
109 |
// Revision 1.4 2005/12/14 05:08:44 rogeeff
|
sl@0
|
110 |
// dll support introduced
|
sl@0
|
111 |
//
|
sl@0
|
112 |
// Revision 1.3 2005/03/24 04:02:32 rogeeff
|
sl@0
|
113 |
// portability fixes
|
sl@0
|
114 |
//
|
sl@0
|
115 |
// Revision 1.2 2005/03/23 21:02:10 rogeeff
|
sl@0
|
116 |
// Sunpro CC 5.3 fixes
|
sl@0
|
117 |
//
|
sl@0
|
118 |
// Revision 1.1 2005/02/20 08:27:05 rogeeff
|
sl@0
|
119 |
// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
|
sl@0
|
120 |
//
|
sl@0
|
121 |
// ***************************************************************************
|
sl@0
|
122 |
|
sl@0
|
123 |
#endif // BOOST_TEST_FRAMEWORK_HPP_020805GER
|
sl@0
|
124 |
|