Add stub of std-stream-send

This commit is contained in:
2021-07-05 17:59:09 +02:00
parent 13547a5fef
commit 9d56da96f9
9 changed files with 334 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
add_executable(std-stream-send-tests main.cpp)
target_link_libraries(std-stream-send-tests
std-stream-send-lib
gtest
)
+8
View File
@@ -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();
}