meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Model/PaymentMethod/PaymentMethodApplePayTest.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

26 lines
506 B
PHP

<?php
namespace Tests\YooKassa\Model\PaymentMethod;
use YooKassa\Model\PaymentMethod\PaymentMethodApplePay;
use YooKassa\Model\PaymentMethodType;
class PaymentMethodApplePayTest extends AbstractPaymentMethodTest
{
/**
* @return PaymentMethodApplePay
*/
protected function getTestInstance()
{
return new PaymentMethodApplePay();
}
/**
* @return string
*/
protected function getExpectedType()
{
return PaymentMethodType::APPLE_PAY;
}
}