mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-24 23:08:03 +00:00
25 lines
565 B
PHP
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;
|
|
}
|
|
} |