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