meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Common/Exceptions/AuthorizeExceptionTest.php

14 lines
375 B
PHP
Raw Permalink Normal View History

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