mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-25 11:08:05 +00:00
26 lines
496 B
PHP
26 lines
496 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Model\Confirmation;
|
|
|
|
use YooKassa\Model\Confirmation\ConfirmationExternal;
|
|
use YooKassa\Model\ConfirmationType;
|
|
|
|
|
|
class ConfirmationExternalTest extends AbstractConfirmationTest
|
|
{
|
|
/**
|
|
* @return ConfirmationExternal
|
|
*/
|
|
protected function getTestInstance()
|
|
{
|
|
return new ConfirmationExternal();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getExpectedType()
|
|
{
|
|
return ConfirmationType::EXTERNAL;
|
|
}
|
|
} |