mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-06-07 00:28:40 +02:00
Add stub of std-stream-send
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
add_executable(std-stream-send-tests main.cpp)
|
||||
|
||||
target_link_libraries(std-stream-send-tests
|
||||
std-stream-send-lib
|
||||
gtest
|
||||
)
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
Reference in New Issue
Block a user