mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 20:08:01 +00:00
25 lines
505 B
PHP
25 lines
505 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;
|
|
}
|
|
} |