Chromium Code Reviews| Index: ios/chrome/browser/find_in_page/find_tab_helper_unittest.mm |
| diff --git a/ios/chrome/browser/find_in_page/find_tab_helper_unittest.mm b/ios/chrome/browser/find_in_page/find_tab_helper_unittest.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..414d8ad1e175b0a50d191b912dea3878c92542a5 |
| --- /dev/null |
| +++ b/ios/chrome/browser/find_in_page/find_tab_helper_unittest.mm |
| @@ -0,0 +1,31 @@ |
| +// 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/browser/find_in_page/find_tab_helper.h" |
| + |
| +#include "base/macros.h" |
| +#import "ios/web/public/test/fakes/test_web_state.h" |
| +#import "ios/web/public/test/web_test.h" |
| + |
| +#if !defined(__has_feature) || !__has_feature(objc_arc) |
| +#error "This file requires ARC support." |
| +#endif |
| + |
| +// Test fixture for the FindTabHelper class. |
| +class FindTabHelperTest : public web::WebTest { |
| + public: |
| + FindTabHelperTest() { FindTabHelper::CreateForWebState(&web_state_, nil); } |
| + ~FindTabHelperTest() override = default; |
| + |
| + protected: |
| + web::TestWebState web_state_; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(FindTabHelperTest); |
|
Eugene But (OOO till 7-30)
2017/02/10 00:03:36
nit: Do we need this?
rohitrao (ping after 24h)
2017/02/10 13:52:18
I've always included it in every class, unless I e
Eugene But (OOO till 7-30)
2017/02/10 18:31:19
I can't recall any tests which have this macro. I
|
| +}; |
| + |
| +// Tests that the helper's FindInPageController exists. |
| +TEST_F(FindTabHelperTest, ControllerExists) { |
| + DCHECK(FindTabHelper::FromWebState(&web_state_)->GetController()); |
| +} |