meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Request/Payments/Payment/CancelResponseTest.php

15 lines
350 B
PHP
Raw Normal View History

<?php
namespace Tests\YooKassa\Request\Payments\Payment;
use Tests\YooKassa\Request\Payments\AbstractPaymentResponseTest;
use YooKassa\Request\Payments\Payment\CancelResponse;
class CancelResponseTest extends AbstractPaymentResponseTest
{
protected function getTestInstance($options)
{
return new CancelResponse($options);
}
}