rad 6.2.0
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1
9#ifndef RAD_UTEST_CONFIG_HPP
10#define RAD_UTEST_CONFIG_HPP
11
12#include <rad/config.hpp>
13
14#include <string>
15
16namespace rad {
17namespace utest {
18
19const std::string CONFIG_DEFAULT_VERSION = "1.0";
20const std::string CONFIG_DEFAULT_MODNAME = "utestapp";
21const std::string CONFIG_DEFAULT_PROCNAME = "utestApp";
22const std::string CONFIG_DEFAULT_FILENAME = "";
23const std::string CONFIG_DEFAULT_SCXML_FILENAME = "";
24const std::string CONFIG_DEFAULT_SCXML_APPEND = "";
25const std::string CONFIG_DEFAULT_LOG_LEVEL = "INFO";
26const std::string CONFIG_DEFAULT_LOG_PROPERTIES = "";
27const std::string CONFIG_DEFAULT_REQ_ENDPOINT = "";
28//const std::string CONFIG_DEFAULT_REQ_ENDPOINT = "zpb.rr://127.0.0.1:12081/";
29const std::string CONFIG_DEFAULT_OLDB_URI_PREFIX = "cii.oldb:/elt/";
33
40class Config : public rad::Config {
41public:
48 Config();
49
53 virtual ~Config();
54};
55
56} // utest namespace
57} // rad namespace
58
59#endif // RAD_UTEST_CONFIG_HPP
Config class header file.
Definition config.hpp:77
Definition config.hpp:40
virtual ~Config()
Definition config.cpp:96
Config()
Definition config.cpp:17
const std::string CONFIG_DEFAULT_REQ_ENDPOINT
Definition config.hpp:27
const std::string CONFIG_DEFAULT_SCXML_APPEND
Definition config.hpp:24
const std::string CONFIG_DEFAULT_PROCNAME
Definition config.hpp:21
const std::string CONFIG_DEFAULT_SCXML_FILENAME
Definition config.hpp:23
const std::string CONFIG_DEFAULT_VERSION
Definition config.hpp:19
const int CONFIG_DEFAULT_OLDB_ASYNC_PERIOD
Definition config.hpp:31
const std::string CONFIG_DEFAULT_LOG_PROPERTIES
Definition config.hpp:26
const std::string CONFIG_DEFAULT_FILENAME
Definition config.hpp:22
const std::string CONFIG_DEFAULT_MODNAME
Definition config.hpp:20
const bool CONFIG_DEFAULT_TRS_HEALTH_ENABLED
Definition config.hpp:32
const std::string CONFIG_DEFAULT_OLDB_URI_PREFIX
Definition config.hpp:29
const int CONFIG_DEFAULT_OLDB_CONN_TIMEOUT
Definition config.hpp:30
const std::string CONFIG_DEFAULT_LOG_LEVEL
Definition config.hpp:25
Definition actionsApp.cpp:23