rad  5.1.0
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 
16 namespace rad {
17 namespace utest {
18 
19 const std::string CONFIG_DEFAULT_VERSION = "1.0";
20 const std::string CONFIG_DEFAULT_MODNAME = "utestapp";
21 const std::string CONFIG_DEFAULT_PROCNAME = "utestApp";
22 const std::string CONFIG_DEFAULT_FILENAME = "";
23 const std::string CONFIG_DEFAULT_SCXML_FILENAME = "";
24 const std::string CONFIG_DEFAULT_SCXML_APPEND = "";
25 const std::string CONFIG_DEFAULT_LOG_LEVEL = "INFO";
26 const std::string CONFIG_DEFAULT_LOG_PROPERTIES = "";
27 const std::string CONFIG_DEFAULT_REQ_ENDPOINT = "";
28 //const std::string CONFIG_DEFAULT_REQ_ENDPOINT = "zpb.rr://127.0.0.1:12081/";
29 const std::string CONFIG_DEFAULT_OLDB_URI_PREFIX = "cii.oldb:/elt/";
32 
39 class Config : public rad::Config {
40 public:
47  Config();
48 
52  virtual ~Config();
53 };
54 
55 } // utest namespace
56 } // rad namespace
57 
58 #endif // RAD_UTEST_CONFIG_HPP
Config class header file.
Definition: config.hpp:67
Definition: config.hpp:39
virtual ~Config()
Definition: config.cpp:57
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 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:31
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:20