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