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