blob: 364692b8871165204daeac6243cdd7ae4156094a [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (C) Copyright Gennadiy Rozental 2001-2008.
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$
9//
10// Version : $Revision: 57992 $
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 <ndnboost/test/detail/global_typedef.hpp>
19#include <ndnboost/test/detail/log_level.hpp>
20
21#include <ndnboost/test/detail/suppress_warnings.hpp>
22
23// STL
24#include <iosfwd>
25
26//____________________________________________________________________________//
27
28namespace ndnboost {
29
30namespace unit_test {
31
32// ************************************************************************** //
33// ************** runtime_config ************** //
34// ************************************************************************** //
35
36namespace runtime_config {
37
38BOOST_TEST_DECL void init( int& argc, char** argv );
39
40BOOST_TEST_DECL unit_test::log_level log_level();
41BOOST_TEST_DECL bool no_result_code();
42BOOST_TEST_DECL unit_test::report_level report_level();
43BOOST_TEST_DECL const_string test_to_run();
44BOOST_TEST_DECL const_string break_exec_path();
45BOOST_TEST_DECL bool save_pattern();
46BOOST_TEST_DECL bool show_build_info();
47BOOST_TEST_DECL bool show_progress();
48BOOST_TEST_DECL bool catch_sys_errors();
49BOOST_TEST_DECL bool auto_start_dbg();
50BOOST_TEST_DECL bool use_alt_stack();
51BOOST_TEST_DECL bool detect_fp_exceptions();
52BOOST_TEST_DECL output_format report_format();
53BOOST_TEST_DECL output_format log_format();
54BOOST_TEST_DECL std::ostream* report_sink();
55BOOST_TEST_DECL std::ostream* log_sink();
56BOOST_TEST_DECL long detect_memory_leaks();
57BOOST_TEST_DECL int random_seed();
58
59} // namespace runtime_config
60
61} // namespace unit_test
62
63} // namespace ndnboost
64
65//____________________________________________________________________________//
66
67#include <ndnboost/test/detail/enable_warnings.hpp>
68
69#endif // BOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER