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

Side by Side Diff: chrome/browser/cocoa/download_item_button_unittest.mm

Issue 180036: Make download items drag sources on OS X. (Closed)
Patch Set: comments Created 10 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 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.
4
5 #include "base/scoped_nsobject.h"
6 #import "chrome/browser/cocoa/download_item_button.h"
7 #import "chrome/browser/cocoa/cocoa_test_helper.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "testing/platform_test.h"
10
11 // Make sure nothing leaks.
12 TEST(DownloadItemButtonTest, Create) {
13 scoped_nsobject<DownloadItemButton> button;
14 button.reset([[DownloadItemButton alloc]
15 initWithFrame:NSMakeRect(0,0,500,500)]);
16
17 // Test setter
18 FilePath path("foo");
19 [button.get() setDownload:path];
20 EXPECT_EQ(path.value(), [button.get() download].value());
21 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/download_item_button.mm ('k') | chrome/browser/cocoa/download_item_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698