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

15 lines
371 B
PHP
Raw Normal View History

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