mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 17:28:00 +00:00
25 lines
535 B
PHP
25 lines
535 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentMethod;
|
|
|
|
use YooKassa\Model\PaymentMethod\PaymentMethodMobileBalance;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentMethodMobileBalanceTest extends AbstractPaymentMethodPhoneTest
|
|
{
|
|
/**
|
|
* @return PaymentMethodMobileBalance
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentMethodMobileBalance();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::MOBILE_BALANCE;
|
|
}
|
|
} |