This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/tests/PayPal/Test/Api/PaymentExecutionTest.php
Jay Patel fd6a38d0ef PayPalModel to differentiate between empty objects and array
- Fixes to PayPalModel Conversion
- Fixes #262
2015-03-03 16:55:18 -06:00

58 lines
1.4 KiB
PHP

<?php
namespace PayPal\Test\Api;
use PayPal\Common\PayPalModel;
use PayPal\Api\PaymentExecution;
/**
* Class PaymentExecution
*
* @package PayPal\Test\Api
*/
class PaymentExecutionTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object PaymentExecution
* @return string
*/
public static function getJson()
{
return '{"payer_id":"TestSample","transactions":[' .TransactionTest::getJson() . ']}';
}
/**
* Gets Object Instance with Json data filled in
* @return PaymentExecution
*/
public static function getObject()
{
return new PaymentExecution(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return PaymentExecution
*/
public function testSerializationDeserialization()
{
$obj = new PaymentExecution(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getPayerId());
$this->assertNotNull($obj->getTransactions());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param PaymentExecution $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getPayerId(), "TestSample");
$this->assertEquals($obj->getTransactions(), array(TransactionTest::getObject()));
}
}