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:
japatel
2015-01-08 22:23:58 -06:00
parent ed2a4fd41e
commit b011d17cde
150 changed files with 47 additions and 10994 deletions

View File

@@ -57,44 +57,4 @@ class CreditCardListTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($obj->getNextId(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param CreditCardList $obj
*/
public function testDeprecatedGetters($obj)
{
$this->assertEquals($obj->getCredit_cards(), CreditCardTest::getObject());
$this->assertEquals($obj->getNext_id(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param CreditCardList $obj
*/
public function testDeprecatedSetterNormalGetter($obj)
{
// Check for Credit_cards
$obj->setCreditCards(null);
$this->assertNull($obj->getCredit_cards());
$this->assertNull($obj->getCreditCards());
$this->assertSame($obj->getCreditCards(), $obj->getCredit_cards());
$obj->setCredit_cards(CreditCardTest::getObject());
$this->assertEquals($obj->getCredit_cards(), CreditCardTest::getObject());
// Check for Next_id
$obj->setNextId(null);
$this->assertNull($obj->getNext_id());
$this->assertNull($obj->getNextId());
$this->assertSame($obj->getNextId(), $obj->getNext_id());
$obj->setNext_id("TestSample");
$this->assertEquals($obj->getNext_id(), "TestSample");
//Test All Deprecated Getters and Normal Getters
$this->testDeprecatedGetters($obj);
$this->testGetters($obj);
}
}