forked from LiveCarta/PayPal-PHP-SDK
- Removed Deprecated Getter Setters from all Model Classes - All Camelcase getters and setters are removed. Please use first letter uppercase syntax - E.g. instead of using get_notify_url(), use getNotifyUrl() instead
73 lines
2.5 KiB
PHP
73 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace PayPal\Test\Api;
|
|
|
|
use PayPal\Common\PayPalModel;
|
|
use PayPal\Api\PayoutBatchHeader;
|
|
|
|
/**
|
|
* Class PayoutBatchHeader
|
|
*
|
|
* @package PayPal\Test\Api
|
|
*/
|
|
class PayoutBatchHeaderTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Gets Json String of Object PayoutBatchHeader
|
|
* @return string
|
|
*/
|
|
public static function getJson()
|
|
{
|
|
return '{"payout_batch_id":"TestSample","batch_status":"TestSample","time_created":"TestSample","time_completed":"TestSample","sender_batch_header":' .PayoutSenderBatchHeaderTest::getJson() . ',"amount":' .CurrencyTest::getJson() . ',"fees":' .CurrencyTest::getJson() . ',"errors":' .ErrorTest::getJson() . ',"links":' .LinksTest::getJson() . '}';
|
|
}
|
|
|
|
/**
|
|
* Gets Object Instance with Json data filled in
|
|
* @return PayoutBatchHeader
|
|
*/
|
|
public static function getObject()
|
|
{
|
|
return new PayoutBatchHeader(self::getJson());
|
|
}
|
|
|
|
|
|
/**
|
|
* Tests for Serialization and Deserialization Issues
|
|
* @return PayoutBatchHeader
|
|
*/
|
|
public function testSerializationDeserialization()
|
|
{
|
|
$obj = new PayoutBatchHeader(self::getJson());
|
|
$this->assertNotNull($obj);
|
|
$this->assertNotNull($obj->getPayoutBatchId());
|
|
$this->assertNotNull($obj->getBatchStatus());
|
|
$this->assertNotNull($obj->getTimeCreated());
|
|
$this->assertNotNull($obj->getTimeCompleted());
|
|
$this->assertNotNull($obj->getSenderBatchHeader());
|
|
$this->assertNotNull($obj->getAmount());
|
|
$this->assertNotNull($obj->getFees());
|
|
$this->assertNotNull($obj->getErrors());
|
|
$this->assertNotNull($obj->getLinks());
|
|
$this->assertEquals(self::getJson(), $obj->toJson());
|
|
return $obj;
|
|
}
|
|
|
|
/**
|
|
* @depends testSerializationDeserialization
|
|
* @param PayoutBatchHeader $obj
|
|
*/
|
|
public function testGetters($obj)
|
|
{
|
|
$this->assertEquals($obj->getPayoutBatchId(), "TestSample");
|
|
$this->assertEquals($obj->getBatchStatus(), "TestSample");
|
|
$this->assertEquals($obj->getTimeCreated(), "TestSample");
|
|
$this->assertEquals($obj->getTimeCompleted(), "TestSample");
|
|
$this->assertEquals($obj->getSenderBatchHeader(), PayoutSenderBatchHeaderTest::getObject());
|
|
$this->assertEquals($obj->getAmount(), CurrencyTest::getObject());
|
|
$this->assertEquals($obj->getFees(), CurrencyTest::getObject());
|
|
$this->assertEquals($obj->getErrors(), ErrorTest::getObject());
|
|
$this->assertEquals($obj->getLinks(), LinksTest::getObject());
|
|
}
|
|
|
|
}
|