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

@@ -55,44 +55,4 @@ class PhoneTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($obj->getNationalNumber(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param Phone $obj
*/
public function testDeprecatedGetters($obj)
{
$this->assertEquals($obj->getCountry_code(), "TestSample");
$this->assertEquals($obj->getNational_number(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param Phone $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 National_number
$obj->setNationalNumber(null);
$this->assertNull($obj->getNational_number());
$this->assertNull($obj->getNationalNumber());
$this->assertSame($obj->getNationalNumber(), $obj->getNational_number());
$obj->setNational_number("TestSample");
$this->assertEquals($obj->getNational_number(), "TestSample");
//Test All Deprecated Getters and Normal Getters
$this->testDeprecatedGetters($obj);
$this->testGetters($obj);
}
}