#include "components/autofill/core/browser/ui/payments/payments_window_user_consent_dialog_controller_impl.h"
#include <string>
#include "base/functional/callback_forward.h"
#include "base/test/mock_callback.h"
#include "components/strings/grit/components_strings.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
namespace autofill::payments {
class PaymentsWindowUserConsentDialogControllerImplTest : public testing::Test { … };
TEST_F(PaymentsWindowUserConsentDialogControllerImplTest,
CorrectStringsAreReturned) { … }
TEST_F(PaymentsWindowUserConsentDialogControllerImplTest,
AcceptCallbackTriggeredOnDialogAcceptance) { … }
TEST_F(PaymentsWindowUserConsentDialogControllerImplTest,
CancelCallbackTriggeredOnDialogCancelling) { … }
}