#include "components/sync/service/account_pref_utils.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "components/signin/public/base/gaia_id_hash.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
namespace {
constexpr char kPrefPathScalar[] = …;
constexpr char kPrefPathDict[] = …;
TEST(AccountPrefUtils, ShouldGetAndSetScalarPref) { … }
TEST(AccountPrefUtils, ShouldKeepGaiaIdsSeparateForScalarPref) { … }
TEST(AccountPrefUtils, ShouldGetAndSetDictPrefEntries) { … }
TEST(AccountPrefUtils, ShouldKeepGaiaIdsSeparateForDictPref) { … }
TEST(AccountPrefUtils, ShouldClearValuesForUnlistedAccounts) { … }
}
}