blob: ca7a24f927794d4cb2e8f0d1fb86c450ff711a50 [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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015#ifndef NDNBOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER
16#define NDNBOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017
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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070038NDNBOOST_TEST_DECL void init( int& argc, char** argv );
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070039
Jeff Thompson3d613fd2013-10-15 15:39:04 -070040NDNBOOST_TEST_DECL unit_test::log_level log_level();
41NDNBOOST_TEST_DECL bool no_result_code();
42NDNBOOST_TEST_DECL unit_test::report_level report_level();
43NDNBOOST_TEST_DECL const_string test_to_run();
44NDNBOOST_TEST_DECL const_string break_exec_path();
45NDNBOOST_TEST_DECL bool save_pattern();
46NDNBOOST_TEST_DECL bool show_build_info();
47NDNBOOST_TEST_DECL bool show_progress();
48NDNBOOST_TEST_DECL bool catch_sys_errors();
49NDNBOOST_TEST_DECL bool auto_start_dbg();
50NDNBOOST_TEST_DECL bool use_alt_stack();
51NDNBOOST_TEST_DECL bool detect_fp_exceptions();
52NDNBOOST_TEST_DECL output_format report_format();
53NDNBOOST_TEST_DECL output_format log_format();
54NDNBOOST_TEST_DECL std::ostream* report_sink();
55NDNBOOST_TEST_DECL std::ostream* log_sink();
56NDNBOOST_TEST_DECL long detect_memory_leaks();
57NDNBOOST_TEST_DECL int random_seed();
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070058
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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070069#endif // NDNBOOST_TEST_UNIT_TEST_PARAMETERS_HPP_071894GER