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