#include "components/unified_consent/url_keyed_data_collection_consent_helper.h"
#include <vector>
#include "components/sync/engine/cycle/sync_cycle_snapshot.h"
#include "components/sync/service/sync_service.h"
#include "components/sync/test/test_sync_service.h"
#include "components/sync_preferences/testing_pref_service_syncable.h"
#include "components/unified_consent/pref_names.h"
#include "components/unified_consent/unified_consent_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace unified_consent {
namespace {
class UrlKeyedDataCollectionConsentHelperTest
: public testing::Test,
public UrlKeyedDataCollectionConsentHelper::Observer { … };
TEST_F(UrlKeyedDataCollectionConsentHelperTest, AnonymizedDataCollection) { … }
TEST_F(UrlKeyedDataCollectionConsentHelperTest, PersonalizedDataCollection) { … }
TEST_F(UrlKeyedDataCollectionConsentHelperTest,
PersonalizedDataCollection_NullSyncService) { … }
TEST_F(UrlKeyedDataCollectionConsentHelperTest,
PersonalizedBookmarksDataCollection) { … }
TEST_F(UrlKeyedDataCollectionConsentHelperTest,
PersonalizedBookmarksDataCollection_IsSyncFeatureEnabled) { … }
TEST_F(UrlKeyedDataCollectionConsentHelperTest,
PersonalizedBookmarksDataCollection_NullSyncService) { … }
}
}