forked from LiveCarta/PayPal-PHP-SDK
Removed Deprecated Getter and Setters
- Removed Deprecated Getter Setters from all Model Classes - All Camelcase getters and setters are removed. Please use first letter uppercase syntax - E.g. instead of using get_notify_url(), use getNotifyUrl() instead
This commit is contained in:
@@ -65,44 +65,4 @@ class AddressTest extends \PHPUnit_Framework_TestCase
|
||||
$this->assertEquals($obj->getPhone(), "TestSample");
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param Address $obj
|
||||
*/
|
||||
public function testDeprecatedGetters($obj)
|
||||
{
|
||||
$this->assertEquals($obj->getCountry_code(), "TestSample");
|
||||
$this->assertEquals($obj->getPostal_code(), "TestSample");
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param Address $obj
|
||||
*/
|
||||
public function testDeprecatedSetterNormalGetter($obj)
|
||||
{
|
||||
|
||||
// Check for Country_code
|
||||
$obj->setCountryCode(null);
|
||||
$this->assertNull($obj->getCountry_code());
|
||||
$this->assertNull($obj->getCountryCode());
|
||||
$this->assertSame($obj->getCountryCode(), $obj->getCountry_code());
|
||||
$obj->setCountry_code("TestSample");
|
||||
$this->assertEquals($obj->getCountry_code(), "TestSample");
|
||||
|
||||
// Check for Postal_code
|
||||
$obj->setPostalCode(null);
|
||||
$this->assertNull($obj->getPostal_code());
|
||||
$this->assertNull($obj->getPostalCode());
|
||||
$this->assertSame($obj->getPostalCode(), $obj->getPostal_code());
|
||||
$obj->setPostal_code("TestSample");
|
||||
$this->assertEquals($obj->getPostal_code(), "TestSample");
|
||||
|
||||
//Test All Deprecated Getters and Normal Getters
|
||||
$this->testDeprecatedGetters($obj);
|
||||
$this->testGetters($obj);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user