mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-03 22:18:59 +00:00
26 lines
497 B
PHP
26 lines
497 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentData;
|
|
|
|
use YooKassa\Model\PaymentData\PaymentDataSberBnpl;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentDataSberBnplTest extends AbstractPaymentDataPhoneTest
|
|
{
|
|
/**
|
|
* @return PaymentDataSberBnpl
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentDataSberBnpl();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::SBER_BNPL;
|
|
}
|
|
}
|