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

Side by Side Diff: chrome/browser/ui/cocoa/tabs/tab_view_unittest.mm

Issue 2565813002: Create c/b/ui/cocoa/test and move test files to there (Closed)
Patch Set: Rebase Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/mac/scoped_nsobject.h" 7 #include "base/mac/scoped_nsobject.h"
8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
9 #import "chrome/browser/ui/cocoa/tabs/tab_view.h" 8 #import "chrome/browser/ui/cocoa/tabs/tab_view.h"
9 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "testing/platform_test.h" 11 #include "testing/platform_test.h"
12 12
13 namespace { 13 namespace {
14 14
15 const float kTabWidth = 50; 15 const float kTabWidth = 50;
16 const float kTabHeight = 30; 16 const float kTabHeight = 30;
17 17
18 class TabViewTest : public CocoaTest { 18 class TabViewTest : public CocoaTest {
19 public: 19 public:
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 EXPECT_TRUE([view_ hitTest:bottomLeftCorner]); 67 EXPECT_TRUE([view_ hitTest:bottomLeftCorner]);
68 68
69 NSPoint topLeftCorner = NSMakePoint(0, kTabHeight); 69 NSPoint topLeftCorner = NSMakePoint(0, kTabHeight);
70 EXPECT_FALSE([view_ hitTest:topLeftCorner]); 70 EXPECT_FALSE([view_ hitTest:topLeftCorner]);
71 71
72 NSPoint middle = NSMakePoint(kTabWidth / 2, kTabHeight / 2); 72 NSPoint middle = NSMakePoint(kTabWidth / 2, kTabHeight / 2);
73 EXPECT_TRUE([view_ hitTest:middle]); 73 EXPECT_TRUE([view_ hitTest:middle]);
74 } 74 }
75 75
76 } // namespace 76 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/tabs/tab_strip_view_unittest.mm ('k') | chrome/browser/ui/cocoa/test/cocoa_profile_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698