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..7146c0989b28a2a7ce033ba897e94c819d1d4dcc |
--- /dev/null |
+++ b/ios/chrome/search_widget_extension/search_widget_view_controller_unittest.mm |
@@ -0,0 +1,24 @@ |
+// 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 |
+ |
+class SearchWidgetViewControllerTest : public PlatformTest { |
sdefresne
2017/04/19 15:54:57
nit: you can use a typedef (or better the new usin
lody
2017/04/19 16:01:53
Done.
|
+ public: |
+ SearchWidgetViewControllerTest() {} |
+}; |
+ |
+TEST_F(SearchWidgetViewControllerTest, Alloc) { |
+ SearchWidgetViewController* controller = |
+ [[SearchWidgetViewController alloc] init]; |
+ ASSERT_NE(controller, nil); |
+} |