chromium/components/autofill/core/browser/payments/test/autofill_payments_test_utils.cc

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

#include "components/autofill/core/browser/payments/test/autofill_payments_test_utils.h"

#include <string_view>
#include <vector>

#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/data_model/autofill_i18n_api.h"
#include "components/autofill/core/browser/data_model/autofill_profile.h"
#include "components/autofill/core/browser/field_types.h"

namespace autofill::payments {

namespace {

AutofillProfile BuildProfile(std::string_view first_name,
                             std::string_view last_name,
                             std::string_view address_line,
                             std::string_view city,
                             std::string_view state,
                             std::string_view zip,
                             std::string_view phone_number) {}

}  // namespace

std::vector<AutofillProfile> BuildTestProfiles() {}

}  // namespace autofill::payments