Files
yookassa-sdk-php/tests/Model/Confirmation/ConfirmationCodeVerificationTest.php
T
Антон Н. Николаев 3eebc00ef2 Обновленная версия SDK
2020-12-01 15:39:32 +03:00

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;
}
}