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

19 lines
456 B
PHP

<?php
namespace Tests\YooKassa\Common\Exceptions;
use YooKassa\Common\Exceptions\EmptyPropertyValueException;
class EmptyPropertyValueExceptionTest extends InvalidPropertyExceptionTest
{
/**
* @param string $message
* @param string $property
* @return EmptyPropertyValueException
*/
protected function getTestInstance($message, $property)
{
return new EmptyPropertyValueException($message, 0, $property);
}
}