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:
@@ -59,44 +59,4 @@ class CancelNotificationTest extends \PHPUnit_Framework_TestCase
|
||||
$this->assertEquals($obj->getSendToPayer(), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param CancelNotification $obj
|
||||
*/
|
||||
public function testDeprecatedGetters($obj)
|
||||
{
|
||||
$this->assertEquals($obj->getSend_to_merchant(), true);
|
||||
$this->assertEquals($obj->getSend_to_payer(), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param CancelNotification $obj
|
||||
*/
|
||||
public function testDeprecatedSetterNormalGetter($obj)
|
||||
{
|
||||
|
||||
// Check for Send_to_merchant
|
||||
$obj->setSendToMerchant(null);
|
||||
$this->assertNull($obj->getSend_to_merchant());
|
||||
$this->assertNull($obj->getSendToMerchant());
|
||||
$this->assertSame($obj->getSendToMerchant(), $obj->getSend_to_merchant());
|
||||
$obj->setSend_to_merchant(true);
|
||||
$this->assertEquals($obj->getSend_to_merchant(), true);
|
||||
|
||||
// Check for Send_to_payer
|
||||
$obj->setSendToPayer(null);
|
||||
$this->assertNull($obj->getSend_to_payer());
|
||||
$this->assertNull($obj->getSendToPayer());
|
||||
$this->assertSame($obj->getSendToPayer(), $obj->getSend_to_payer());
|
||||
$obj->setSend_to_payer(true);
|
||||
$this->assertEquals($obj->getSend_to_payer(), true);
|
||||
|
||||
//Test All Deprecated Getters and Normal Getters
|
||||
$this->testDeprecatedGetters($obj);
|
||||
$this->testGetters($obj);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user