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,61 @@
<?php
namespace PayPal\Test\Api;
use PayPal\Common\PayPalModel;
use PayPal\Api\InstallmentInfo;
/**
* Class InstallmentInfo
*
* @package PayPal\Test\Api
*/
class InstallmentInfoTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object InstallmentInfo
* @return string
*/
public static function getJson()
{
return '{"installment_id":"TestSample","network":"TestSample","issuer":"TestSample","installment_options":' .InstallmentOptionTest::getJson() . '}';
}
/**
* Gets Object Instance with Json data filled in
* @return InstallmentInfo
*/
public static function getObject()
{
return new InstallmentInfo(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return InstallmentInfo
*/
public function testSerializationDeserialization()
{
$obj = new InstallmentInfo(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getInstallmentId());
$this->assertNotNull($obj->getNetwork());
$this->assertNotNull($obj->getIssuer());
$this->assertNotNull($obj->getInstallmentOptions());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param InstallmentInfo $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getInstallmentId(), "TestSample");
$this->assertEquals($obj->getNetwork(), "TestSample");
$this->assertEquals($obj->getIssuer(), "TestSample");
$this->assertEquals($obj->getInstallmentOptions(), InstallmentOptionTest::getObject());
}
}