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/PayeeTest.php
Jay Patel 3e43f93f9b Updated Payment APIs
- Updated SDK Models to latest Payment APIs
- Updated Unit Tests
2015-02-26 15:03:59 -06:00

58 lines
1.2 KiB
PHP

<?php
namespace PayPal\Test\Api;
use PayPal\Common\PayPalModel;
use PayPal\Api\Payee;
/**
* Class Payee
*
* @package PayPal\Test\Api
*/
class PayeeTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object Payee
* @return string
*/
public static function getJson()
{
return '{"email":"TestSample","merchant_id":"TestSample"}';
}
/**
* Gets Object Instance with Json data filled in
* @return Payee
*/
public static function getObject()
{
return new Payee(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return Payee
*/
public function testSerializationDeserialization()
{
$obj = new Payee(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getEmail());
$this->assertNotNull($obj->getMerchantId());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param Payee $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getEmail(), "TestSample");
$this->assertEquals($obj->getMerchantId(), "TestSample");
}
}