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

Side by Side Diff: chrome/browser/extensions/app_notification_storage_unittest.cc

Issue 10500016: Move test_browser_thread.h from content\test to content\public\test. This way we can enforce that i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
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 #include "base/file_path.h" 5 #include "base/file_path.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/scoped_temp_dir.h" 10 #include "base/scoped_temp_dir.h"
11 #include "base/stl_util.h" 11 #include "base/stl_util.h"
12 #include "chrome/browser/extensions/app_notification.h" 12 #include "chrome/browser/extensions/app_notification.h"
13 #include "chrome/browser/extensions/app_notification_storage.h" 13 #include "chrome/browser/extensions/app_notification_storage.h"
14 #include "chrome/browser/extensions/app_notification_test_util.h" 14 #include "chrome/browser/extensions/app_notification_test_util.h"
15 #include "chrome/common/extensions/extension_test_util.h" 15 #include "chrome/common/extensions/extension_test_util.h"
16 #include "content/test/test_browser_thread.h" 16 #include "content/public/test/test_browser_thread.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 using content::BrowserThread; 19 using content::BrowserThread;
20 20
21 namespace util = app_notification_test_util; 21 namespace util = app_notification_test_util;
22 22
23 class AppNotificationStorageTest : public testing::Test { 23 class AppNotificationStorageTest : public testing::Test {
24 public: 24 public:
25 AppNotificationStorageTest() : 25 AppNotificationStorageTest() :
26 file_thread_(BrowserThread::FILE, &message_loop_) {} 26 file_thread_(BrowserThread::FILE, &message_loop_) {}
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 util::AddNotifications(&list1, id, 5, "one"); 130 util::AddNotifications(&list1, id, 5, "one");
131 util::AddNotifications(&list2, id, 7, "two"); 131 util::AddNotifications(&list2, id, 7, "two");
132 132
133 // Put list1 in, then replace with list2 and verify we get list2 back. 133 // Put list1 in, then replace with list2 and verify we get list2 back.
134 EXPECT_TRUE(storage_->Set(id, list1)); 134 EXPECT_TRUE(storage_->Set(id, list1));
135 EXPECT_TRUE(storage_->Set(id, list2)); 135 EXPECT_TRUE(storage_->Set(id, list2));
136 AppNotificationList tmp_list; 136 AppNotificationList tmp_list;
137 EXPECT_TRUE(storage_->Get(id, &tmp_list)); 137 EXPECT_TRUE(storage_->Get(id, &tmp_list));
138 util::ExpectListsEqual(list2, tmp_list); 138 util::ExpectListsEqual(list2, tmp_list);
139 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698