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,35 +65,4 @@ class InvoiceItemTest extends \PHPUnit_Framework_TestCase
|
||||
$this->assertEquals($obj->getDiscount(), CostTest::getObject());
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param InvoiceItem $obj
|
||||
*/
|
||||
public function testDeprecatedGetters($obj)
|
||||
{
|
||||
$this->assertEquals($obj->getUnit_price(), CurrencyTest::getObject());
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param InvoiceItem $obj
|
||||
*/
|
||||
public function testDeprecatedSetterNormalGetter($obj)
|
||||
{
|
||||
|
||||
// Check for Unit_price
|
||||
$obj->setUnitPrice(null);
|
||||
$this->assertNull($obj->getUnit_price());
|
||||
$this->assertNull($obj->getUnitPrice());
|
||||
$this->assertSame($obj->getUnitPrice(), $obj->getUnit_price());
|
||||
$obj->setUnit_price(CurrencyTest::getObject());
|
||||
$this->assertEquals($obj->getUnit_price(), CurrencyTest::getObject());
|
||||
|
||||
//Test All Deprecated Getters and Normal Getters
|
||||
$this->testDeprecatedGetters($obj);
|
||||
$this->testGetters($obj);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user