chromium/chrome/browser/ui/views/passwords/shared_passwords_notification_view_unittest.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/views/passwords/shared_passwords_notification_view.h"

#include <memory>

#include "chrome/browser/password_manager/password_manager_test_util.h"
#include "chrome/browser/ui/views/passwords/password_bubble_view_test_base.h"
#include "components/password_manager/core/browser/password_form.h"
#include "components/password_manager/core/browser/password_store/test_password_store.h"
#include "components/password_manager/core/common/password_manager_ui.h"
#include "ui/events/test/test_event.h"
#include "ui/views/test/button_test_api.h"

class SharedPasswordsNotificationViewTest : public PasswordBubbleViewTestBase {};

void SharedPasswordsNotificationViewTest::CreateViewAndShow() {}

void SharedPasswordsNotificationViewTest::SetUp() {}

void SharedPasswordsNotificationViewTest::TearDown() {}

TEST_F(SharedPasswordsNotificationViewTest, HasTwoButtons) {}

TEST_F(SharedPasswordsNotificationViewTest,
       ShouldCloseBubbleUponClickOnGotItButton) {}

TEST_F(SharedPasswordsNotificationViewTest,
       ShouldNavigateToSettingsUponClickOnManagePasswordsButton) {}