26 lines
607 B
PHP
26 lines
607 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\YooKassa\Model\ConfirmationAttributes;
|
||
|
|
|
||
|
|
use YooKassa\Model\ConfirmationAttributes\ConfirmationAttributesCodeVerification;
|
||
|
|
use YooKassa\Model\ConfirmationType;
|
||
|
|
|
||
|
|
class ConfirmationAttributesCodeVerificationTest extends AbstractConfirmationAttributesTest
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return ConfirmationAttributesCodeVerification
|
||
|
|
*/
|
||
|
|
protected function getTestInstance()
|
||
|
|
{
|
||
|
|
return new ConfirmationAttributesCodeVerification();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
protected function getExpectedType()
|
||
|
|
{
|
||
|
|
return ConfirmationType::CODE_VERIFICATION;
|
||
|
|
}
|
||
|
|
}
|