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.21 $ |
---|
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 | |
---|
25 | namespace boost { |
---|
26 | |
---|
27 | namespace unit_test { |
---|
28 | |
---|
29 | // ************************************************************************** // |
---|
30 | // ************** runtime_config ************** // |
---|
31 | // ************************************************************************** // |
---|
32 | |
---|
33 | namespace runtime_config { |
---|
34 | |
---|
35 | void init( int* argc, char** argv ); |
---|
36 | |
---|
37 | unit_test::log_level log_level(); |
---|
38 | bool no_result_code(); |
---|
39 | unit_test::report_level report_level(); |
---|
40 | const_string test_to_run(); |
---|
41 | bool save_pattern(); |
---|
42 | bool show_build_info(); |
---|
43 | bool show_progress(); |
---|
44 | bool catch_sys_errors(); |
---|
45 | output_format report_format(); |
---|
46 | output_format log_format(); |
---|
47 | long detect_memory_leak(); |
---|
48 | int random_seed(); |
---|
49 | |
---|
50 | } // namespace runtime_config |
---|
51 | |
---|
52 | } // namespace unit_test |
---|
53 | |
---|
54 | } // namespace boost |
---|
55 | |
---|
56 | //____________________________________________________________________________// |
---|
57 | |
---|
58 | #include <boost/test/detail/enable_warnings.hpp> |
---|
59 | |
---|
60 | // *************************************************************************** |
---|
61 | // Revision History : |
---|
62 | // |
---|
63 | // $Log: unit_test_parameters.hpp,v $ |
---|
64 | // Revision 1.21 2005/04/05 06:11:37 rogeeff |
---|
65 | // memory leak allocation point detection\nextra help with _WIN32_WINNT |
---|
66 | // |
---|
67 | // Revision 1.20 2005/02/21 10:18:30 rogeeff |
---|
68 | // random cla support |
---|
69 | // |
---|
70 | // Revision 1.19 2005/02/20 08:27:06 rogeeff |
---|
71 | // This a major update for Boost.Test framework. See release docs for complete list of fixes/updates |
---|
72 | // |
---|
73 | // *************************************************************************** |
---|
74 | |
---|
75 | #endif // BOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER |
---|