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

Side by Side Diff: chrome/browser/ui/cocoa/find_bar_bridge_unittest.mm

Issue 6366001: [Mac] Move the associated find bar files into a subdir of c/b/ui/cocoa/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/cocoa/cocoa_test_helper.h"
6 #include "chrome/browser/ui/cocoa/find_bar_bridge.h"
7 #include "chrome/browser/ui/find_bar/find_bar_controller.h"
8
9 namespace {
10
11 class FindBarBridgeTest : public CocoaTest {
12 };
13
14 TEST_F(FindBarBridgeTest, Creation) {
15 // Make sure the FindBarBridge constructor doesn't crash and
16 // properly initializes its FindBarCocoaController.
17 FindBarBridge bridge;
18 EXPECT_TRUE(bridge.find_bar_cocoa_controller() != NULL);
19 }
20
21 TEST_F(FindBarBridgeTest, Accessors) {
22 // Get/SetFindBarController are virtual methods implemented in
23 // FindBarBridge, so we test them here.
24 FindBarBridge* bridge = new FindBarBridge();
25 FindBarController controller(bridge); // takes ownership of |bridge|.
26 bridge->SetFindBarController(&controller);
27
28 EXPECT_EQ(&controller, bridge->GetFindBarController());
29 }
30 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/find_bar_bridge.mm ('k') | chrome/browser/ui/cocoa/find_bar_cocoa_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698