diff --git a/cpp/unittest/log/log_tests.cpp b/cpp/unittest/log/log_tests.cpp index df9e581959..483d52da9f 100644 --- a/cpp/unittest/log/log_tests.cpp +++ b/cpp/unittest/log/log_tests.cpp @@ -6,6 +6,6 @@ #include -TEST(LOG_TESTS, INIT_TEST) { - ASSERT_EQ(true); +TEST(LogTest, INIT_TEST) { + ASSERT_STREQ("A", "A"); } \ No newline at end of file diff --git a/cpp/unittest/vecwise_test.cpp b/cpp/unittest/vecwise_test.cpp index 55620d9f9d..d5dfff538c 100644 --- a/cpp/unittest/vecwise_test.cpp +++ b/cpp/unittest/vecwise_test.cpp @@ -3,9 +3,9 @@ // Unauthorized copying of this file, via any medium is strictly prohibited. // Proprietary and confidential. //////////////////////////////////////////////////////////////////////////////// +#include #include - int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS();