yoomoney_api-2.5.2/vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/AuthorizeExceptionTest.php
vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/AuthorizeExceptionTest.php
<?php
namespace Tests\YooKassa\Common\Exceptions;
use YooKassa\Common\Exceptions\AuthorizeException;
class AuthorizeExceptionTest extends ApiExceptionTest
{
public function getTestInstance($message = '', $code = 0, $responseHeaders = array(), $responseBody = null)
{
return new AuthorizeException($message, $code, $responseHeaders, $responseBody);
}
}
