Update hello_test.cc

This commit is contained in:
Administrator 2022-01-23 15:59:36 +00:00
parent c695bbe57b
commit 4a0bd5b08e

View File

@ -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();
}