mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 17:37:59 +00:00
25 lines
499 B
PHP
25 lines
499 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentData;
|
|
|
|
use YooKassa\Model\PaymentData\PaymentDataApplePay;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentDataApplePayTest extends AbstractPaymentDataApplePayTest
|
|
{
|
|
/**
|
|
* @return PaymentDataApplePay
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentDataApplePay();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::APPLE_PAY;
|
|
}
|
|
} |