Updated Invoicing APIs

- Updated Model objects.
- Updated Samples.
- Updated Tests.
This commit is contained in:
Jay Patel
2016-07-13 15:16:25 -05:00
parent 9534bcb176
commit c714f77980
48 changed files with 3320 additions and 2881 deletions

View File

@@ -0,0 +1,59 @@
<?php
namespace PayPal\Test\Api;
use PayPal\Common\PayPalModel;
use PayPal\Api\PaymentSummary;
/**
* Class PaymentSummary
*
* @package PayPal\Test\Api
*/
class PaymentSummaryTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object PaymentSummary
* @return string
*/
public static function getJson()
{
return '{"paypal":' .CurrencyTest::getJson() . ',"other":' .CurrencyTest::getJson() . '}';
}
/**
* Gets Object Instance with Json data filled in
* @return PaymentSummary
*/
public static function getObject()
{
return new PaymentSummary(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return PaymentSummary
*/
public function testSerializationDeserialization()
{
$obj = new PaymentSummary(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getPaypal());
$this->assertNotNull($obj->getOther());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param PaymentSummary $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getPaypal(), CurrencyTest::getObject());
$this->assertEquals($obj->getOther(), CurrencyTest::getObject());
}
}