Unit tests for PIClientServer

This commit is contained in:
andrey.bychkov
2024-09-16 19:54:44 +03:00
parent f992bf4cbb
commit 3255199b3f
5 changed files with 288 additions and 2 deletions

View File

@@ -50,5 +50,4 @@ void PIClientServer::Client::connect(PINetworkAddress addr) {
config.apply(this);
tcp->connect(addr, true);
tcp->startThreadedRead();
piCout << "Connect to" << addr.toString();
}

View File

@@ -123,7 +123,6 @@ void PIClientServer::Server::newClient(ServerClient * c) {
config.apply(c);
c->tcp->startThreadedRead();
c->connected();
piCout << "New client";
}