Home
last modified time | relevance | path

Searched refs:ServerTester (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-modbus/tests/
H A Dmodbus_server_tester.cpp23 ServerTester::ServerTester(sdbusplus::async::context& ctx, int fd) : in ServerTester() function in phosphor::modbus::test::ServerTester
27 auto ServerTester::processRequestsInternal() -> void in processRequestsInternal()
76 auto ServerTester::processRequests() -> void in processRequests()
108 void ServerTester::processMessage(MessageIntf& request, size_t requestSize, in processMessage()
132 void ServerTester::processReadHoldingRegisters( in processReadHoldingRegisters()
H A DReadme.md11 server logic resides in `modbus_server_tester.cpp::ServerTester`, with further
14 ### ServerTester subsection
16 `ServerTester` acts as a mock Modbus server, intercepting Modbus messages and
19 side. `ServerTester` is capable of handling both single and segmented response
H A Dmodbus_server_tester.hpp14 friend class ServerTester;
76 class ServerTester class
79 explicit ServerTester(sdbusplus::async::context& ctx, int fd);
H A Dtest_base.hpp30 std::unique_ptr<TestIntf::ServerTester> serverTester;
H A Dtest_base.cpp29 serverTester = std::make_unique<TestIntf::ServerTester>(ctx, fdServer); in BaseTest()