ADD: added test for direct zmq tcp and a first version of the server and client class

This commit is contained in:
Henry Winkel
2023-07-05 17:05:03 +02:00
parent f03c00a1a8
commit 828d038d5f
6 changed files with 289 additions and 11 deletions

View File

@@ -93,6 +93,8 @@ add_library(whisper-com STATIC
src/DirectCommunicationServer.cpp
src/DirectCommunicationClient.cpp
)
@@ -151,5 +153,9 @@ IF (${TEST_WHISPER_COMMUNICATION_LIBRARY})
target_link_libraries(test_InternalUDPListener Catch2::Catch2 whisper-com loguru)
catch_discover_tests(test_InternalUDPListener)
add_executable(test_DirectComms tests/test_DirectComms.cpp)
target_link_libraries(test_DirectComms Catch2::Catch2 whisper-com loguru)
catch_discover_tests(test_DirectComms)
ENDIF()