// 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. #ifndef COMPONENTS_PAYMENTS_CONTENT_TEST_PAYMENT_APP_H_ #define COMPONENTS_PAYMENTS_CONTENT_TEST_PAYMENT_APP_H_ #include "base/memory/weak_ptr.h" #include "components/payments/content/payment_app.h" namespace payments { // A fake PaymentApp for use in unittests. class TestPaymentApp : public PaymentApp { … }; } // namespace payments #endif // COMPONENTS_PAYMENTS_CONTENT_TEST_PAYMENT_APP_H_