| Index: ios/chrome/content_widget_extension/content_widget_view_controller_unittest.mm
|
| diff --git a/ios/chrome/content_widget_extension/content_widget_view_controller_unittest.mm b/ios/chrome/content_widget_extension/content_widget_view_controller_unittest.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8a59730b7e4ea15e31fab4c8fb3d42395a27dcdf
|
| --- /dev/null
|
| +++ b/ios/chrome/content_widget_extension/content_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/content_widget_extension/content_widget_view_controller.h"
|
| +
|
| +#import "ios/chrome/content_widget_extension/content_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 ContentWidgetViewControllerTest = PlatformTest;
|
| +
|
| +TEST_F(ContentWidgetViewControllerTest, Alloc) {
|
| + ContentWidgetViewController* controller =
|
| + [[ContentWidgetViewController alloc] init];
|
| + ASSERT_NE(controller, nil);
|
| +}
|
|
|