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

25 lines
565 B
PHP

<?php
namespace Tests\YooKassa\Model\ConfirmationAttributes;
use YooKassa\Model\ConfirmationAttributes\ConfirmationAttributesDeepLink;
use YooKassa\Model\ConfirmationType;
class ConfirmationAttributesDeepLinkTest extends AbstractConfirmationAttributesTest
{
/**
* @return ConfirmationAttributesDeepLink
*/
protected function getTestInstance()
{
return new ConfirmationAttributesDeepLink();
}
/**
* @return string
*/
protected function getExpectedType()
{
return ConfirmationType::DEEPLINK;
}
}