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

Unified Diff: chrome/browser/cocoa/browser_frame_view_unittest.mm

Issue 260009: Several background pattern fixes on the Mac.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/cocoa/browser_frame_view.mm ('k') | chrome/browser/cocoa/browser_window_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/browser_frame_view_unittest.mm
===================================================================
--- chrome/browser/cocoa/browser_frame_view_unittest.mm (revision 0)
+++ chrome/browser/cocoa/browser_frame_view_unittest.mm (revision 0)
@@ -0,0 +1,48 @@
+// Copyright (c) 2009 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 <objc/runtime.h>
+
+#include "base/scoped_nsobject.h"
+#import "chrome/browser/cocoa/browser_frame_view.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "testing/platform_test.h"
+
+class BrowserFrameViewTest : public PlatformTest {
+ public:
+ BrowserFrameViewTest() {
+ NSRect frame = NSMakeRect(0, 0, 50, 50);
+ // We create NSGrayFrame instead of BrowserFrameView because
+ // we are swizzling into NSGrayFrame.
+ Class browserFrameClass = NSClassFromString(@"NSGrayFrame");
+ view_.reset([[browserFrameClass alloc] initWithFrame:frame]);
+ }
+
+ scoped_nsobject<NSView> view_;
+};
+
+// Test to make sure our class modifications were successful.
+TEST_F(BrowserFrameViewTest, SuccessfulClassModifications) {
+ unsigned int count;
+ BOOL foundMouseInGroup = NO;
+ BOOL foundDrawRectOriginal = NO;
+ BOOL foundUpdateTrackingAreas = NO;
+
+ Method* methods = class_copyMethodList([view_ class], &count);
+ for (unsigned int i = 0; i < count; ++i) {
+ SEL selector = method_getName(methods[i]);
+ if (selector == @selector(_mouseInGroup:)) {
+ foundMouseInGroup = YES;
+ } else if (selector == @selector(drawRectOriginal:)) {
+ foundDrawRectOriginal = YES;
+ } else if (selector == @selector(updateTrackingAreas)) {
+ foundUpdateTrackingAreas = YES;
+ }
+ }
+ EXPECT_TRUE(foundMouseInGroup);
+ EXPECT_TRUE(foundDrawRectOriginal);
+ EXPECT_TRUE(foundUpdateTrackingAreas);
+ free(methods);
+}
Property changes on: chrome/browser/cocoa/browser_frame_view_unittest.mm
___________________________________________________________________
Name: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/cocoa/browser_frame_view.mm ('k') | chrome/browser/cocoa/browser_window_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698