// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/message_center/public/cpp/notification_delegate.h" #include "base/functional/bind.h" #include "base/functional/callback.h" #include "base/memory/ref_counted.h" #include "testing/gtest/include/gtest/gtest.h" namespace message_center { class NotificationDelegateTest : public testing::Test { … }; TEST_F(NotificationDelegateTest, ClickDelegate) { … } TEST_F(NotificationDelegateTest, NullClickDelegate) { … } TEST_F(NotificationDelegateTest, ButtonClickDelegate) { … } } // namespace message_center