Updated Payment APIs

- Updated SDK Models to latest Payment APIs
- Updated Unit Tests
This commit is contained in:
Jay Patel
2015-02-26 15:03:59 -06:00
parent 241d80cd17
commit 3e43f93f9b
93 changed files with 6079 additions and 1735 deletions

View File

@@ -0,0 +1,57 @@
<?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(), TransactionTest::getObject());
}
}