#include "chrome/browser/permissions/notifications_engagement_service_factory.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace permissions {
constexpr char kEngagementKey[] = …;
constexpr char kDisplayedKey[] = …;
class NotificationsEngagementServiceTest : public testing::Test { … };
void NotificationsEngagementServiceTest::SetUp() { … }
TEST_F(NotificationsEngagementServiceTest,
NotificationsEngagementContentSetting) { … }
TEST_F(NotificationsEngagementServiceTest,
RecordNotificationDisplayedAndInteraction) { … }
TEST_F(NotificationsEngagementServiceTest, EraseStaleEntries) { … }
TEST_F(NotificationsEngagementServiceTest, DISABLED_GetBucketLabel) { … }
}