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