#include "components/prefs/in_memory_pref_store.h"
#include <memory>
#include "base/test/task_environment.h"
#include "base/values.h"
#include "components/prefs/persistent_pref_store_unittest.h"
#include "components/prefs/pref_store_observer_mock.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
const char kTestPref[] = …;
class InMemoryPrefStoreTest : public testing::Test { … };
TEST_F(InMemoryPrefStoreTest, SetGetValue) { … }
TEST_F(InMemoryPrefStoreTest, GetSetObserver) { … }
TEST_F(InMemoryPrefStoreTest, CallObserver) { … }
TEST_F(InMemoryPrefStoreTest, Initialization) { … }
TEST_F(InMemoryPrefStoreTest, ReadOnly) { … }
TEST_F(InMemoryPrefStoreTest, GetReadError) { … }
TEST_F(InMemoryPrefStoreTest, ReadPrefs) { … }
TEST_F(InMemoryPrefStoreTest, CommitPendingWriteWithCallback) { … }
TEST_F(InMemoryPrefStoreTest, RemoveValuesByPrefix) { … }
}