#include "components/segmentation_platform/internal/database/client_result_prefs.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "components/segmentation_platform/internal/constants.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace segmentation_platform {
const char kClientKey[] = …;
const char kClientKey2[] = …;
class ClientResultPrefsTest : public testing::Test { … };
TEST_F(ClientResultPrefsTest, ReadClientResultFromEmptyPrefs) { … }
TEST_F(ClientResultPrefsTest, SaveClientResultToEmptyPrefs) { … }
TEST_F(ClientResultPrefsTest, SaveMultipleClientResults) { … }
}