| Server IP : 54.94.228.101 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/pagarme/pagarme-php/tests/unit/Recipient/ |
Upload File : |
<?php
namespace Pagarme\SdkTests\Recipient;
class RecipientBuilderTest extends \PHPUnit_Framework_TestCase
{
use \PagarMe\Sdk\Recipient\RecipientBuilder;
/**
* @test
*/
public function mustRecipientBeCreatedCorrectly()
{
$recipient = $this->buildRecipient(json_decode('{"object":"recipient","id":"re_cixj52kzw01cn0a6dntrxl5au","transfer_enabled":false,"last_transfer":null,"transfer_interval":"daily","transfer_day":null,"automatic_anticipation_enabled":false,"anticipatable_volume_percentage":0,"date_created":"2017-01-04T16:09:06.797Z","date_updated":"2017-01-04T16:09:06.797Z","bank_account":{"object":"bank_account","id":17359980,"bank_code":"341","agencia":"0932","agencia_dv":null,"conta":"58098","conta_dv":"5","type":"conta_corrente","document_type":"cpf","document_number":"26268738888","legal_name":"API BANK ACCOUNT","charge_transfer_fees":true,"date_created":"2017-01-04T16:09:06.778Z"}}'));
$this->assertInstanceOf('PagarMe\Sdk\Recipient\Recipient', $recipient);
$this->assertInstanceOf('\DateTime', $recipient->getDateCreated());
$this->assertInstanceOf('\DateTime', $recipient->getDateUpdated());
$this->assertInstanceOf(
'PagarMe\Sdk\BankAccount\BankAccount',
$recipient->getBankAccount()
);
}
}