mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 18:48:03 +00:00
25 lines
521 B
PHP
25 lines
521 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentData;
|
|
|
|
use YooKassa\Model\PaymentData\PaymentDataMobileBalance;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentDataMobileBalanceTest extends AbstractPaymentDataPhoneTest
|
|
{
|
|
/**
|
|
* @return PaymentDataMobileBalance
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentDataMobileBalance();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::MOBILE_BALANCE;
|
|
}
|
|
} |