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

Side by Side Diff: chrome/browser/browsing_data_indexed_db_helper_unittest.cc

Issue 7744039: Switch ChromeTestSuite to the same convention as ContentTestSuite: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixing Created 9 years, 3 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 "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/browsing_data_indexed_db_helper.h" 8 #include "chrome/browser/browsing_data_indexed_db_helper.h"
9 #include "chrome/test/base/testing_browser_process_test.h" 9 #include "chrome/test/base/testing_profile.h"
10 10
11 namespace { 11 namespace {
12 12
13 typedef TestingBrowserProcessTest CannedBrowsingDataIndexedDBHelperTest; 13 typedef testing::Test CannedBrowsingDataIndexedDBHelperTest;
14 14
15 TEST_F(CannedBrowsingDataIndexedDBHelperTest, Empty) { 15 TEST_F(CannedBrowsingDataIndexedDBHelperTest, Empty) {
16 const GURL origin("http://host1:1/"); 16 const GURL origin("http://host1:1/");
17 const string16 description(ASCIIToUTF16("description")); 17 const string16 description(ASCIIToUTF16("description"));
18 18
19 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper( 19 scoped_refptr<CannedBrowsingDataIndexedDBHelper> helper(
20 new CannedBrowsingDataIndexedDBHelper()); 20 new CannedBrowsingDataIndexedDBHelper());
21 21
22 ASSERT_TRUE(helper->empty()); 22 ASSERT_TRUE(helper->empty());
23 helper->AddIndexedDB(origin, description); 23 helper->AddIndexedDB(origin, description);
24 ASSERT_FALSE(helper->empty()); 24 ASSERT_FALSE(helper->empty());
25 helper->Reset(); 25 helper->Reset();
26 ASSERT_TRUE(helper->empty()); 26 ASSERT_TRUE(helper->empty());
27 } 27 }
28 28
29 } // namespace 29 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698