Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/test/detail/unit_test_parameters.hpp @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 3.1 KB
Line 
1//  (C) Copyright Gennadiy Rozental 2001-2005.
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
6//  See http://www.boost.org/libs/test for the library home page.
7//
8//  File        : $RCSfile: unit_test_parameters.hpp,v $
9//
10//  Version     : $Revision: 1.23.2.1 $
11//
12//  Description : storage for unit test framework parameters information
13// ***************************************************************************
14
15#ifndef BOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER
16#define BOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER
17
18#include <boost/test/detail/global_typedef.hpp>
19#include <boost/test/detail/log_level.hpp>
20
21#include <boost/test/detail/suppress_warnings.hpp>
22
23//____________________________________________________________________________//
24
25namespace boost {
26
27namespace unit_test {
28
29// ************************************************************************** //
30// **************                 runtime_config               ************** //
31// ************************************************************************** //
32
33namespace runtime_config {
34
35void                    BOOST_TEST_DECL init( int* argc, char** argv );
36
37unit_test::log_level    BOOST_TEST_DECL log_level();
38bool                    BOOST_TEST_DECL no_result_code();
39unit_test::report_level BOOST_TEST_DECL report_level();
40const_string            BOOST_TEST_DECL test_to_run();
41const_string            BOOST_TEST_DECL break_exec_path();
42bool                    BOOST_TEST_DECL save_pattern();
43bool                    BOOST_TEST_DECL show_build_info();
44bool                    BOOST_TEST_DECL show_progress();
45bool                    BOOST_TEST_DECL catch_sys_errors();
46output_format           BOOST_TEST_DECL report_format();
47output_format           BOOST_TEST_DECL log_format();
48long                    BOOST_TEST_DECL detect_memory_leaks();
49int                     BOOST_TEST_DECL random_seed();
50
51} // namespace runtime_config
52
53} // namespace unit_test
54
55} // namespace boost
56
57//____________________________________________________________________________//
58
59#include <boost/test/detail/enable_warnings.hpp>
60
61// ***************************************************************************
62//  Revision History :
63// 
64//  $Log: unit_test_parameters.hpp,v $
65//  Revision 1.23.2.1  2006/11/13 20:06:57  jhunold
66//  Merge from HEAD:
67//  Added missing export declarations.
68//
69//  Revision 1.23  2006/01/30 07:29:49  rogeeff
70//  split memory leaks detection API in two to get more functions with better defined roles
71//
72//  Revision 1.22  2005/12/14 04:58:30  rogeeff
73//  new parameter --break_exec_path introduced
74//
75//  Revision 1.21  2005/04/05 06:11:37  rogeeff
76//  memory leak allocation point detection\nextra help with _WIN32_WINNT
77//
78//  Revision 1.20  2005/02/21 10:18:30  rogeeff
79//  random cla support
80//
81//  Revision 1.19  2005/02/20 08:27:06  rogeeff
82//  This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
83//
84// ***************************************************************************
85
86#endif // BOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER
Note: See TracBrowser for help on using the repository browser.