ifw-ccf 6.0.0
 
Loading...
Searching...
No Matches
testDcsClientHelper.hpp
Go to the documentation of this file.
1
6
7#ifndef CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
8#define CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
9
11
12namespace ifw::ccf::common::test {
13
14 const std::string DCS_CLIENT_HELP = "TestApplication [-v] <service URI> <request> <parameters | parameter file>\n -v verbose with debug info.\n <service URI> destination of the request (e.g. zpb.rr://127.0.0.1:12081)\n <request> request to be sent (e.g. Init, Exit, GetStatus, ...)\n <parameters | parameter file> parameters of the request\n";
15
16 const auto STATE_ON_NOT_OP_NOT_READY = "On::NotOperational::NotReady/On::NotOperational/On/";
17
18
20 public:
23
24 std::string SendReqUser(const std::string& request,
25 const ifw::core::utils::param::ParameterSet& parameters);
26
27 protected:
28
29 private:
30
31 };
32
33}
34
35#endif // CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
Used to implement CCF Control client applications.
Definition dcsClient.hpp:34
DcsClientTest()
Definition testDcsClientHelper.cpp:13
~DcsClientTest()
Definition testDcsClientHelper.cpp:17
std::string SendReqUser(const std::string &request, const ifw::core::utils::param::ParameterSet &parameters)
Method to actually send the request and receive the response.
Definition testDcsClientHelper.cpp:21
Definition testComAdptBaseHelper.cpp:12
const std::string DCS_CLIENT_HELP
Definition testDcsClientHelper.hpp:14
const auto STATE_ON_NOT_OP_NOT_READY
Definition testDcsClientHelper.hpp:16