mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 19:38:04 +00:00
25 lines
484 B
PHP
25 lines
484 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentMethod;
|
|
|
|
use YooKassa\Model\PaymentMethod\PaymentMethodCash;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentMethodCashTest extends AbstractPaymentMethodTest
|
|
{
|
|
/**
|
|
* @return PaymentMethodCash
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentMethodCash();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::CASH;
|
|
}
|
|
} |