#include "chrome/browser/ui/passwords/bubble_controllers/common_saved_account_manager_bubble_controller.h"
#include "base/test/task_environment.h"
#include "chrome/browser/ui/passwords/passwords_model_delegate_mock.h"
#include "components/password_manager/core/browser/password_manager_test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
_;
Return;
ReturnRef;
namespace {
constexpr char kSiteOrigin[] = …;
constexpr char16_t kUsername[] = …;
constexpr char16_t kPassword[] = …;
}
class StubCommonSavedAccountBubbleControllerClient
: public CommonSavedAccountManagerBubbleController { … };
class CommonSavedAccountManagerBubbleControllerTest : public ::testing::Test { … };
void CommonSavedAccountManagerBubbleControllerTest::SetUpWithState(
password_manager::ui::State state,
PasswordBubbleControllerBase::DisplayReason reason) { … }
void CommonSavedAccountManagerBubbleControllerTest::PretendPasswordWaiting(
PasswordBubbleControllerBase::DisplayReason reason) { … }
TEST_F(CommonSavedAccountManagerBubbleControllerTest, OnNoThanksClicked) { … }
TEST_F(CommonSavedAccountManagerBubbleControllerTest, TextInputFieldsChanged) { … }
TEST_F(CommonSavedAccountManagerBubbleControllerTest,
NavigateToPasswordManagerSettingsPage) { … }