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:
@@ -61,62 +61,4 @@ class PayerTest extends \PHPUnit_Framework_TestCase
|
||||
$this->assertEquals($obj->getPayerInfo(), PayerInfoTest::getObject());
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param Payer $obj
|
||||
*/
|
||||
public function testDeprecatedGetters($obj)
|
||||
{
|
||||
$this->assertEquals($obj->getPayment_method(), "TestSample");
|
||||
$this->assertEquals($obj->getFunding_instruments(), FundingInstrumentTest::getObject());
|
||||
$this->assertEquals($obj->getFunding_option_id(), "TestSample");
|
||||
$this->assertEquals($obj->getPayer_info(), PayerInfoTest::getObject());
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testSerializationDeserialization
|
||||
* @param Payer $obj
|
||||
*/
|
||||
public function testDeprecatedSetterNormalGetter($obj)
|
||||
{
|
||||
|
||||
// Check for Payment_method
|
||||
$obj->setPaymentMethod(null);
|
||||
$this->assertNull($obj->getPayment_method());
|
||||
$this->assertNull($obj->getPaymentMethod());
|
||||
$this->assertSame($obj->getPaymentMethod(), $obj->getPayment_method());
|
||||
$obj->setPayment_method("TestSample");
|
||||
$this->assertEquals($obj->getPayment_method(), "TestSample");
|
||||
|
||||
// Check for Funding_instruments
|
||||
$obj->setFundingInstruments(null);
|
||||
$this->assertNull($obj->getFunding_instruments());
|
||||
$this->assertNull($obj->getFundingInstruments());
|
||||
$this->assertSame($obj->getFundingInstruments(), $obj->getFunding_instruments());
|
||||
$obj->setFunding_instruments(FundingInstrumentTest::getObject());
|
||||
$this->assertEquals($obj->getFunding_instruments(), FundingInstrumentTest::getObject());
|
||||
|
||||
// Check for Funding_option_id
|
||||
$obj->setFundingOptionId(null);
|
||||
$this->assertNull($obj->getFunding_option_id());
|
||||
$this->assertNull($obj->getFundingOptionId());
|
||||
$this->assertSame($obj->getFundingOptionId(), $obj->getFunding_option_id());
|
||||
$obj->setFunding_option_id("TestSample");
|
||||
$this->assertEquals($obj->getFunding_option_id(), "TestSample");
|
||||
|
||||
// Check for Payer_info
|
||||
$obj->setPayerInfo(null);
|
||||
$this->assertNull($obj->getPayer_info());
|
||||
$this->assertNull($obj->getPayerInfo());
|
||||
$this->assertSame($obj->getPayerInfo(), $obj->getPayer_info());
|
||||
$obj->setPayer_info(PayerInfoTest::getObject());
|
||||
$this->assertEquals($obj->getPayer_info(), PayerInfoTest::getObject());
|
||||
|
||||
//Test All Deprecated Getters and Normal Getters
|
||||
$this->testDeprecatedGetters($obj);
|
||||
$this->testGetters($obj);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user