mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-29 19:48:43 +00:00
2db9951ff6
Информация про чеки самозанятых в платежах и возвратах удалена - больше не поддерживаем сервисы для самозанятых Добавлена возможность выставления счета по смс и email Добавлена поддержка работы со списками выплат Обновлен Copyright
628 lines
22 KiB
PHP
628 lines
22 KiB
PHP
<?php
|
||
|
||
/*
|
||
* The MIT License
|
||
*
|
||
* Copyright (c) 2026 "YooMoney", NBСO LLC
|
||
*
|
||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
* of this software and associated documentation files (the "Software"), to deal
|
||
* in the Software without restriction, including without limitation the rights
|
||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
* copies of the Software, and to permit persons to whom the Software is
|
||
* furnished to do so, subject to the following conditions:
|
||
*
|
||
* The above copyright notice and this permission notice shall be included in
|
||
* all copies or substantial portions of the Software.
|
||
*
|
||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
* THE SOFTWARE.
|
||
*/
|
||
|
||
namespace Tests\YooKassa\Request\Payouts;
|
||
|
||
use Exception;
|
||
use Tests\YooKassa\AbstractTestCase;
|
||
use Datetime;
|
||
use YooKassa\Helpers\Random;
|
||
use YooKassa\Model\Deal\PayoutDealInfo;
|
||
use YooKassa\Model\Metadata;
|
||
use YooKassa\Model\MonetaryAmount;
|
||
use YooKassa\Request\Payouts\CreatePayoutRequest;
|
||
use YooKassa\Request\Payouts\CreatePayoutRequestBuilder;
|
||
use YooKassa\Request\Payouts\PayoutDestinationData\PayoutDestinationDataBankCard;
|
||
use YooKassa\Request\Payouts\PayoutDestinationData\PayoutDestinationDataFactory;
|
||
use YooKassa\Request\Payouts\PayoutPersonalData;
|
||
|
||
/**
|
||
* CreatePayoutRequestTest
|
||
*
|
||
* @category ClassTest
|
||
* @author cms@yoomoney.ru
|
||
* @link https://yookassa.ru/developers/api
|
||
*/
|
||
class CreatePayoutRequestTest extends AbstractTestCase
|
||
{
|
||
protected CreatePayoutRequest $object;
|
||
|
||
/**
|
||
* @return CreatePayoutRequest
|
||
*/
|
||
protected function getTestInstance(): CreatePayoutRequest
|
||
{
|
||
return new CreatePayoutRequest();
|
||
}
|
||
|
||
/**
|
||
* @return void
|
||
*/
|
||
public function testCreatePayoutRequestClassExists(): void
|
||
{
|
||
$this->object = $this->getMockBuilder(CreatePayoutRequest::class)->getMockForAbstractClass();
|
||
$this->assertTrue(class_exists(CreatePayoutRequest::class));
|
||
$this->assertInstanceOf(CreatePayoutRequest::class, $this->object);
|
||
}
|
||
|
||
/**
|
||
* Test property "amount"
|
||
* @dataProvider validAmountDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testAmount(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
$instance->setAmount($value);
|
||
self::assertTrue($instance->hasAmount());
|
||
self::assertNotNull($instance->getAmount());
|
||
self::assertNotNull($instance->amount);
|
||
self::assertEquals($value, is_array($value) ? $instance->getAmount()->toArray() : $instance->getAmount());
|
||
self::assertEquals($value, is_array($value) ? $instance->amount->toArray() : $instance->amount);
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "amount"
|
||
* @dataProvider invalidAmountDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidAmount(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setAmount($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validAmountDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_amount'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidAmountDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_amount'));
|
||
}
|
||
|
||
/**
|
||
* Test property "payout_destination_data"
|
||
* @dataProvider validPayoutDestinationDataDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testPayoutDestinationData(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getPayoutDestinationData());
|
||
self::assertEmpty($instance->payout_destination_data);
|
||
$instance->setPayoutDestinationData($value);
|
||
if (is_array($value)) {
|
||
$value = (new PayoutDestinationDataFactory)->factoryFromArray($value);
|
||
}
|
||
self::assertEquals($value, is_array($value) ? $instance->getPayoutDestinationData()->toArray() : $instance->getPayoutDestinationData());
|
||
self::assertEquals($value, is_array($value) ? $instance->payout_destination_data->toArray() : $instance->payout_destination_data);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasPayoutDestinationData());
|
||
self::assertNotNull($instance->getPayoutDestinationData());
|
||
self::assertNotNull($instance->payout_destination_data);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "payout_destination_data"
|
||
* @dataProvider invalidPayoutDestinationDataDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidPayoutDestinationData(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setPayoutDestinationData($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validPayoutDestinationDataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_payout_destination_data'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidPayoutDestinationDataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_payout_destination_data'));
|
||
}
|
||
|
||
/**
|
||
* Test property "payout_token"
|
||
* @dataProvider validPayoutTokenDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testPayoutToken(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getPayoutToken());
|
||
self::assertEmpty($instance->payout_token);
|
||
$instance->setPayoutToken($value);
|
||
self::assertEquals($value, is_array($value) ? $instance->getPayoutToken()->toArray() : $instance->getPayoutToken());
|
||
self::assertEquals($value, is_array($value) ? $instance->payout_token->toArray() : $instance->payout_token);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasPayoutToken());
|
||
self::assertNotNull($instance->getPayoutToken());
|
||
self::assertNotNull($instance->payout_token);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "payout_token"
|
||
* @dataProvider invalidPayoutTokenDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidPayoutToken(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setPayoutToken($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validPayoutTokenDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_payout_token'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidPayoutTokenDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_payout_token'));
|
||
}
|
||
|
||
/**
|
||
* Test property "payment_method_id"
|
||
* @dataProvider validPaymentMethodIdDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testPaymentMethodId(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getPaymentMethodId());
|
||
self::assertEmpty($instance->payment_method_id);
|
||
$instance->setPaymentMethodId($value);
|
||
self::assertEquals($value, is_array($value) ? $instance->getPaymentMethodId()->toArray() : $instance->getPaymentMethodId());
|
||
self::assertEquals($value, is_array($value) ? $instance->payment_method_id->toArray() : $instance->payment_method_id);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasPaymentMethodId());
|
||
self::assertNotNull($instance->getPaymentMethodId());
|
||
self::assertNotNull($instance->payment_method_id);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "payment_method_id"
|
||
* @dataProvider invalidPaymentMethodIdDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidPaymentMethodId(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setPaymentMethodId($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validPaymentMethodIdDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_payment_method_id'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidPaymentMethodIdDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_payment_method_id'));
|
||
}
|
||
|
||
/**
|
||
* Test property "description"
|
||
* @dataProvider validDescriptionDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testDescription(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getDescription());
|
||
self::assertEmpty($instance->description);
|
||
$instance->setDescription($value);
|
||
self::assertEquals($value, is_array($value) ? $instance->getDescription()->toArray() : $instance->getDescription());
|
||
self::assertEquals($value, is_array($value) ? $instance->description->toArray() : $instance->description);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasDescription());
|
||
self::assertNotNull($instance->getDescription());
|
||
self::assertNotNull($instance->description);
|
||
self::assertLessThanOrEqual(128, is_string($instance->getDescription()) ? mb_strlen($instance->getDescription()) : $instance->getDescription());
|
||
self::assertLessThanOrEqual(128, is_string($instance->description) ? mb_strlen($instance->description) : $instance->description);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "description"
|
||
* @dataProvider invalidDescriptionDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidDescription(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setDescription($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validDescriptionDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_description'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidDescriptionDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_description'));
|
||
}
|
||
|
||
/**
|
||
* Test property "deal"
|
||
* @dataProvider validDealDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testDeal(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getDeal());
|
||
self::assertEmpty($instance->deal);
|
||
$instance->setDeal($value);
|
||
self::assertEquals($value, is_array($value) ? $instance->getDeal()->toArray() : $instance->getDeal());
|
||
self::assertEquals($value, is_array($value) ? $instance->deal->toArray() : $instance->deal);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasDeal());
|
||
self::assertNotNull($instance->getDeal());
|
||
self::assertNotNull($instance->deal);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "deal"
|
||
* @dataProvider invalidDealDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidDeal(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setDeal($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validDealDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_deal'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidDealDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_deal'));
|
||
}
|
||
|
||
/**
|
||
* Test property "personal_data"
|
||
* @dataProvider validPersonalDataDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testPersonalData(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getPersonalData());
|
||
self::assertEmpty($instance->personal_data);
|
||
self::assertIsObject($instance->getPersonalData());
|
||
self::assertIsObject($instance->personal_data);
|
||
self::assertCount(0, $instance->getPersonalData());
|
||
self::assertCount(0, $instance->personal_data);
|
||
$instance->setPersonalData($value);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasPersonalData());
|
||
self::assertNotNull($instance->getPersonalData());
|
||
self::assertNotNull($instance->personal_data);
|
||
foreach ($value as $key => $element) {
|
||
if (is_array($element) && !empty($element)) {
|
||
self::assertEquals($element, $instance->getPersonalData()[$key]->toArray());
|
||
self::assertEquals($element, $instance->personal_data[$key]->toArray());
|
||
self::assertIsArray($instance->getPersonalData()[$key]->toArray());
|
||
self::assertIsArray($instance->personal_data[$key]->toArray());
|
||
}
|
||
if (is_object($element) && !empty($element)) {
|
||
self::assertEquals($element, $instance->getPersonalData()->get($key));
|
||
self::assertIsObject($instance->getPersonalData()->get($key));
|
||
self::assertIsObject($instance->personal_data->get($key));
|
||
self::assertIsObject($instance->getPersonalData());
|
||
self::assertIsObject($instance->personal_data);
|
||
}
|
||
}
|
||
self::assertCount(count($value), $instance->getPersonalData());
|
||
self::assertCount(count($value), $instance->personal_data);
|
||
self::assertLessThanOrEqual(2, $instance->getPersonalData()->count());
|
||
self::assertLessThanOrEqual(2, $instance->personal_data->count());
|
||
self::assertGreaterThanOrEqual(1, $instance->getPersonalData()->count());
|
||
self::assertGreaterThanOrEqual(1, $instance->personal_data->count());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "personal_data"
|
||
* @dataProvider invalidPersonalDataDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidPersonalData(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setPersonalData($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validPersonalDataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_personal_data'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidPersonalDataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_personal_data'));
|
||
}
|
||
|
||
/**
|
||
* Test property "metadata"
|
||
* @dataProvider validMetadataDataProvider
|
||
* @param mixed $value
|
||
*
|
||
* @return void
|
||
* @throws Exception
|
||
*/
|
||
public function testMetadata(mixed $value): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
self::assertEmpty($instance->getMetadata());
|
||
self::assertEmpty($instance->metadata);
|
||
$instance->setMetadata($value);
|
||
if (!empty($value)) {
|
||
self::assertTrue($instance->hasMetadata());
|
||
self::assertNotNull($instance->getMetadata());
|
||
self::assertNotNull($instance->metadata);
|
||
foreach ($value as $key => $element) {
|
||
if (!empty($element)) {
|
||
self::assertEquals($element, $instance->getMetadata()[$key]);
|
||
self::assertEquals($element, $instance->metadata[$key]);
|
||
self::assertIsObject($instance->getMetadata());
|
||
self::assertIsObject($instance->metadata);
|
||
}
|
||
}
|
||
self::assertCount(count($value), $instance->getMetadata());
|
||
self::assertCount(count($value), $instance->metadata);
|
||
if ($instance->getMetadata() instanceof Metadata) {
|
||
self::assertEquals($value, $instance->getMetadata()->toArray());
|
||
self::assertEquals($value, $instance->metadata->toArray());
|
||
self::assertCount(count($value), $instance->getMetadata());
|
||
self::assertCount(count($value), $instance->metadata);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Test invalid property "metadata"
|
||
* @dataProvider invalidMetadataDataProvider
|
||
* @param mixed $value
|
||
* @param string $exceptionClass
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testInvalidMetadata(mixed $value, string $exceptionClass): void
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
|
||
$this->expectException($exceptionClass);
|
||
$instance->setMetadata($value);
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function validMetadataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_metadata'));
|
||
}
|
||
|
||
/**
|
||
* @return array[]
|
||
* @throws Exception
|
||
*/
|
||
public function invalidMetadataDataProvider(): array
|
||
{
|
||
$instance = $this->getTestInstance();
|
||
return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_metadata'));
|
||
}
|
||
|
||
public function testValidate(): void
|
||
{
|
||
$instance = new CreatePayoutRequest();
|
||
|
||
self::assertFalse($instance->validate());
|
||
|
||
$amount = new MonetaryAmount(1);
|
||
$instance->setAmount($amount);
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setAmount(new MonetaryAmount(10));
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setPayoutToken(null);
|
||
self::assertFalse($instance->validate());
|
||
$instance->setDescription('test');
|
||
self::assertFalse($instance->validate());
|
||
$instance->setDeal(new PayoutDealInfo(['id' => Random::str(36, 50)]));
|
||
self::assertFalse($instance->validate());
|
||
$instance->setAmount(new MonetaryAmount(1));
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setPayoutToken(Random::str(10));
|
||
$instance->setPaymentMethodId('test');
|
||
self::assertFalse($instance->validate());
|
||
$instance->setPersonalData([new PayoutPersonalData(['id' => Random::str(36, 50)])]);
|
||
self::assertFalse($instance->validate());
|
||
|
||
$instance->setPayoutToken(Random::str(10));
|
||
$instance->setPayoutDestinationData(new PayoutDestinationDataBankCard());
|
||
self::assertFalse($instance->validate());
|
||
$instance->setPayoutToken(null);
|
||
$instance->setPaymentMethodId(null);
|
||
self::assertTrue($instance->validate());
|
||
}
|
||
|
||
/**
|
||
* Test valid method "builder"
|
||
*
|
||
* @return void
|
||
*/
|
||
public function testBuilder(): void
|
||
{
|
||
$builder = CreatePayoutRequest::builder();
|
||
self::assertInstanceOf(CreatePayoutRequestBuilder::class, $builder);
|
||
}
|
||
}
|