15 lines
247 B
C++
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
|