// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/prefs/pref_value_map.h" #include "base/values.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { namespace { TEST(PrefValueMapTest, SetValue) { … } TEST(PrefValueMapTest, GetAndSetIntegerValue) { … } TEST(PrefValueMapTest, SetDoubleValue) { … } TEST(PrefValueMapTest, RemoveValue) { … } TEST(PrefValueMapTest, Clear) { … } TEST(PrefValueMapTest, ClearWithPrefix) { … } TEST(PrefValueMapTest, GetDifferingKeys) { … } TEST(PrefValueMapTest, SwapTwoMaps) { … } } // namespace } // namespace base