ifw-ccf 4.0.0
Loading...
Searching...
No Matches
testDcsClientHelper.hpp
Go to the documentation of this file.
1
4#ifndef CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
5#define CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
6
8
9namespace ccf::common::test {
10
11 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";
12
13 const auto STATE_ON_NOT_OP_NOT_READY = "On::NotOperational::NotReady/On::NotOperational/On/";
14
15
17 public:
20
21 std::string SendReqUser(const std::string& request,
22 const core::utils::param::ParameterSet& parameters);
23
24 protected:
25
26 private:
27
28 };
29
30}
31
32#endif // CCF_COMMON_TEST_DCS_CLIENT_HLP_HPP_H_
Used to implement CCF Control client applications.
Definition: dcsClient.hpp:30
Definition: testDcsClientHelper.hpp:16
std::string SendReqUser(const std::string &request, const core::utils::param::ParameterSet &parameters)
Method to actually send the request and receive the response.
Definition: testDcsClientHelper.cpp:19
~DcsClientTest()
Definition: testDcsClientHelper.cpp:15
DcsClientTest()
Definition: testDcsClientHelper.cpp:11
Definition: testComAdptBaseHelper.cpp:10
const auto STATE_ON_NOT_OP_NOT_READY
Definition: testDcsClientHelper.hpp:13
const std::string DCS_CLIENT_HELP
Definition: testDcsClientHelper.hpp:11