yoomoney_api-2.5.2/vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/EmptyPropertyValueExceptionTest.php
vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/EmptyPropertyValueExceptionTest.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);
}
}
