#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/test_timeouts.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/notifications/notification_test_util.h"
#include "chrome/browser/notifications/notification_ui_manager_impl.h"
#include "chrome/browser/notifications/profile_notification.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/scoped_testing_local_state.h"
#include "components/prefs/testing_pref_service.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_types.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_types.h"
#include "ui/message_center/public/cpp/notifier_id.h"
namespace message_center {
class NotificationUIManagerTest : public BrowserWithTestWindowTest { … };
TEST_F(NotificationUIManagerTest, SetupNotificationManager) { … }
TEST_F(NotificationUIManagerTest, AddNotificationOnShutdown) { … }
TEST_F(NotificationUIManagerTest, UpdateNotification) { … }
TEST_F(NotificationUIManagerTest, GetAllIdsReturnsOriginalId) { … }
TEST_F(NotificationUIManagerTest, GetAllIdsByOriginReturnsOriginalId) { … }
}