mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 12:58:06 +00:00
25 lines
536 B
PHP
25 lines
536 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\Confirmation;
|
|
|
|
use YooKassa\Model\Confirmation\ConfirmationCodeVerification;
|
|
use YooKassa\Model\ConfirmationType;
|
|
|
|
class ConfirmationCodeVerificationTest extends AbstractConfirmationTest
|
|
{
|
|
/**
|
|
* @return ConfirmationCodeVerification
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new ConfirmationCodeVerification();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return ConfirmationType::CODE_VERIFICATION;
|
|
}
|
|
} |