Updated Identity Support from SDK Core

- Moved PPModels required for Identity Support
This commit is contained in:
japatel
2014-10-14 14:15:41 -05:00
parent 0cb302326a
commit dc2ac0fd63
36 changed files with 2652 additions and 587 deletions

View File

@@ -0,0 +1,78 @@
<?php
namespace PayPal\Test\Api;
use PayPal\Common\PPModel;
use PayPal\Api\CreateProfileResponse;
/**
* Class CreateProfileResponse
*
* @package PayPal\Test\Api
*/
class CreateProfileResponseTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object CreateProfileResponse
* @return string
*/
public static function getJson()
{
return json_encode(json_decode('{"id":"TestSample"}'));
}
/**
* Gets Object Instance with Json data filled in
* @return CreateProfileResponse
*/
public static function getObject()
{
return new CreateProfileResponse(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return CreateProfileResponse
*/
public function testSerializationDeserialization()
{
$obj = new CreateProfileResponse(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getId());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param CreateProfileResponse $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getId(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param CreateProfileResponse $obj
*/
public function testDeprecatedGetters($obj)
{
}
/**
* @depends testSerializationDeserialization
* @param CreateProfileResponse $obj
*/
public function testDeprecatedSetterNormalGetter($obj)
{
//Test All Deprecated Getters and Normal Getters
$this->testDeprecatedGetters($obj);
$this->testGetters($obj);
}
}