chrome: bluetooth: hook up the AdapterAdded signal
[chromium-blink-merge.git] / chrome / browser / browsing_data_local_storage_helper_unittest.cc
blobbbad7202eb15a0f962500af6bbd2e370e835ace4
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
3 // found in the LICENSE file.
5 #include "chrome/browser/browsing_data_local_storage_helper.h"
7 #include "chrome/test/base/testing_profile.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace {
12 typedef testing::Test CannedBrowsingDataLocalStorageTest;
14 TEST_F(CannedBrowsingDataLocalStorageTest, Empty) {
15 TestingProfile profile;
17 const GURL origin("http://host1:1/");
19 scoped_refptr<CannedBrowsingDataLocalStorageHelper> helper(
20 new CannedBrowsingDataLocalStorageHelper(&profile));
22 ASSERT_TRUE(helper->empty());
23 helper->AddLocalStorage(origin);
24 ASSERT_FALSE(helper->empty());
25 helper->Reset();
26 ASSERT_TRUE(helper->empty());
29 } // namespace