summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/hover_close_button_unittest.mm
blob: 5d19c302027c4780273ef4c8e925bb65d7e17c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2012 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 <Cocoa/Cocoa.h>

#include "base/mac/scoped_nsobject.h"
#import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
#import "chrome/browser/ui/cocoa/hover_close_button.h"
#include "testing/gtest/include/gtest/gtest.h"

class HoverCloseButtonTest : public CocoaTest {
 public:
  HoverCloseButtonTest() {
    NSRect content_frame = [[test_window() contentView] frame];
    button_.reset([[HoverCloseButton alloc] initWithFrame:content_frame]);
    [[test_window() contentView] addSubview:button_];
  }

 protected:
  base::scoped_nsobject<HoverCloseButton> button_;
};

class WebUIHoverCloseButtonTest : public CocoaTest {
 public:
  WebUIHoverCloseButtonTest() {
    NSRect content_frame = [[test_window() contentView] frame];
    button_.reset([[WebUIHoverCloseButton alloc] initWithFrame:content_frame]);
    [[test_window() contentView] addSubview:button_];
  }

 protected:
  base::scoped_nsobject<WebUIHoverCloseButton> button_;
};

TEST_VIEW(HoverCloseButtonTest, button_)

TEST_VIEW(WebUIHoverCloseButtonTest, button_)