12 lines
241 B
C++
12 lines
241 B
C++
#include <gtest/gtest.h>
|
|
#include <utils.hpp>
|
|
#include <zmq_ipc.h>
|
|
|
|
|
|
INSTANTIATE_TYPED_TEST_SUITE_P(ZMQIPCTest, IPCTest,ZMQRequestReply);
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
} |