1 // Copyright (c) 2013 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.
5 #import "chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell.h"
7 #include "base/message_loop/message_loop.h"
8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
10 @interface TestWrenchToolbarButton : NSButton
13 @implementation TestWrenchToolbarButton
16 return [WrenchToolbarButtonCell class];
21 class WrenchToolbarButtonCellTest : public CocoaTest {
23 WrenchToolbarButtonCellTest() {
24 base::scoped_nsobject<NSButton> button([[TestWrenchToolbarButton alloc]
25 initWithFrame:NSMakeRect(0, 0, 29, 29)]);
27 [[test_window() contentView] addSubview:button_];
31 base::scoped_nsobject<WrenchToolbarButtonCell> cell_;
32 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation.
35 DISALLOW_COPY_AND_ASSIGN(WrenchToolbarButtonCellTest);
38 TEST_VIEW(WrenchToolbarButtonCellTest, button_)