Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: third_party/openh264/tests/openh264_unittests.cc

Issue 1394983003: openh264_unittests empty dummy test added (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LICENSE file to satisfy webview_licenses.py (will be replaced by third_party/openh264/src/LICENSE when future CL pulls in src) Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698