From 4a0bd5b08e823cfaa073e6f34f30d75096c68beb Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 23 Jan 2022 15:59:36 +0000 Subject: [PATCH] Update hello_test.cc --- test/hello_test.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/hello_test.cc b/test/hello_test.cc index 977fe7d..cf48e8f 100644 --- a/test/hello_test.cc +++ b/test/hello_test.cc @@ -7,3 +7,8 @@ TEST(HelloTest, BasicAssertions) { // Expect equality. EXPECT_EQ(7 * 6, 42); } + +int main(int argc, char **argv) { + :: testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +}