mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-09-02 05:27:22 +00:00
26 lines
506 B
PHP
26 lines
506 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\PaymentMethod;
|
|
|
|
use YooKassa\Model\PaymentMethod\PaymentMethodSberBnpl;
|
|
use YooKassa\Model\PaymentMethodType;
|
|
|
|
class PaymentMethodSberBnplTest extends AbstractPaymentMethodTest
|
|
{
|
|
/**
|
|
* @return PaymentMethodSberBnpl
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new PaymentMethodSberBnpl();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return PaymentMethodType::SBER_BNPL;
|
|
}
|
|
}
|