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

Unified Diff: ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm

Issue 2810403003: Add unit test and showcase support for search widget. (Closed)
Patch Set: nits Created 3 years, 8 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
« no previous file with comments | « ios/chrome/search_widget_extension/BUILD.gn ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm
diff --git a/ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm b/ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm
new file mode 100644
index 0000000000000000000000000000000000000000..e4823b576aee1a7f92afe1fca7891f940a8b4675
--- /dev/null
+++ b/ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm
@@ -0,0 +1,21 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/search_widget_extension/search_widget_view_controller.h"
+
+#import "ios/chrome/search_widget_extension/search_widget_view_controller.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "testing/platform_test.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+using SearchWidgetViewControllerTest = PlatformTest;
+
+TEST_F(SearchWidgetViewControllerTest, Alloc) {
+ SearchWidgetViewController* controller =
+ [[SearchWidgetViewController alloc] init];
+ ASSERT_NE(controller, nil);
+}
« no previous file with comments | « ios/chrome/search_widget_extension/BUILD.gn ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698