blob: 5d19c302027c4780273ef4c8e925bb65d7e17c27 [file] [log] [blame]
// 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_)