chromium/components/autofill/core/browser/payments/payments_requests/get_details_for_enrollment_request_unittest.cc

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

#include <memory>

#include "base/functional/callback_helpers.h"
#include "base/json/json_reader.h"
#include "components/autofill/core/browser/payments/payments_requests/get_details_for_enrollment_request.h"
#include "components/autofill/core/browser/payments/virtual_card_enrollment_flow.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace autofill::payments {

class GetDetailsForEnrollmentRequestTest
    : public testing::Test,
      public testing::WithParamInterface<VirtualCardEnrollmentSource> {};

TEST_P(GetDetailsForEnrollmentRequestTest, GetRequestContent) {}

TEST_P(GetDetailsForEnrollmentRequestTest, ParseResponse) {}

INSTANTIATE_TEST_SUITE_P();

}  // namespace autofill::payments