From 4ee7d3aa61942044fbe422736541e79bad33de84 Mon Sep 17 00:00:00 2001 From: Yasmine Moumou Date: Mon, 16 Aug 2021 19:44:34 -0400 Subject: [PATCH] Add missing gtest file --- tests/connection_scan_algorithm/gtest.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/connection_scan_algorithm/gtest.cpp diff --git a/tests/connection_scan_algorithm/gtest.cpp b/tests/connection_scan_algorithm/gtest.cpp new file mode 100644 index 00000000..17f9c8e2 --- /dev/null +++ b/tests/connection_scan_algorithm/gtest.cpp @@ -0,0 +1,8 @@ +#include "gtest/gtest.h" // we will add the path to C preprocessor later + +int main(int argc, char **argv) +{ + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +}