Index: third_party/openh264/tests/openh264_unittests.cc |
diff --git a/ios/crnet/test/crnet_test_runner.mm b/third_party/openh264/tests/openh264_unittests.cc |
similarity index 61% |
copy from ios/crnet/test/crnet_test_runner.mm |
copy to third_party/openh264/tests/openh264_unittests.cc |
index 869f738ae270a8bb4cd48a8ac716393184285d96..443d27fef66530bcd0d8f05ac0695e47f7ddc8b7 100644 |
--- a/ios/crnet/test/crnet_test_runner.mm |
+++ b/third_party/openh264/tests/openh264_unittests.cc |
@@ -3,9 +3,18 @@ |
// found in the LICENSE file. |
#include "testing/gtest/include/gtest/gtest.h" |
-#include "testing/gtest_mac.h" |
-int main(int argc, char* argv[]) { |
+namespace openh264 { |
+ |
+class OpenH264Tests : public testing::Test { |
+}; |
+ |
+TEST_F(OpenH264Tests, DummyTestAlwaysPass) { |
+} |
+ |
+} // namespace openh264 |
+ |
+int main(int argc, char **argv) { |
::testing::InitGoogleTest(&argc, argv); |
return RUN_ALL_TESTS(); |
} |