RoboidControl-cpp/test/thing_test.cc
2025-01-01 22:32:56 +01:00

15 lines
247 B
C++

#if GTEST
// #include <gmock/gmock.h>
// not supported using Visual Studio 2022 compiler...
#include <gtest/gtest.h>
#include "Participant.h"
TEST(Dummy, Dummytest) {
Participant participant = Participant("127.0.0.1", 7681);
}
#endif