1 // Copyright 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 "ui/base/cocoa/controls/blue_label_button.h"
7 #include "base/mac/scoped_nsobject.h"
8 #import "testing/gtest_mac.h"
9 #import "ui/gfx/test/ui_cocoa_test_helper.h"
14 class BlueLabelButtonTest : public ui::CocoaTest {
16 BlueLabelButtonTest() {}
18 // ui::CocoaTest override:
19 void SetUp() override;
22 base::scoped_nsobject<BlueLabelButton> blue_label_button_;
25 DISALLOW_COPY_AND_ASSIGN(BlueLabelButtonTest);
28 void BlueLabelButtonTest::SetUp() {
29 blue_label_button_.reset([[BlueLabelButton alloc] initWithFrame:NSZeroRect]);
30 [blue_label_button_ setTitle:@"Test Title"];
31 [blue_label_button_ sizeToFit];
32 ui::CocoaTest::SetUp();
33 [[test_window() contentView] addSubview:blue_label_button_];
36 TEST_VIEW(BlueLabelButtonTest, blue_label_button_);