mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-01 13:08:32 +00:00
27 lines
557 B
PHP
27 lines
557 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentMethod;
|
|
|
|
use YooKassa\Model\PaymentMethod\AbstractPaymentMethod;
|
|
use YooKassa\Model\PaymentMethod\PaymentMethodUnknown;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentMethodUnknownTest extends AbstractPaymentMethodTest
|
|
{
|
|
/**
|
|
* @return AbstractPaymentMethod
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentMethodUnknown();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::UNKNOWN;
|
|
}
|
|
}
|