mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-12 10:56:31 +00:00
24 lines
550 B
PHP
24 lines
550 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\Payment\PaymentMethod;
|
|
|
|
use YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod;
|
|
use YooKassa\Model\Payment\PaymentMethod\PaymentMethodUnknown;
|
|
use YooKassa\Model\Payment\PaymentMethodType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class PaymentMethodUnknownTest extends AbstractTestPaymentMethod
|
|
{
|
|
protected function getTestInstance(): AbstractPaymentMethod
|
|
{
|
|
return new PaymentMethodUnknown();
|
|
}
|
|
|
|
protected function getExpectedType(): string
|
|
{
|
|
return PaymentMethodType::UNKNOWN;
|
|
}
|
|
}
|