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,53 +57,4 @@ class PayoutSenderBatchHeaderTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($obj->getRecipientType(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param PayoutSenderBatchHeader $obj
*/
public function testDeprecatedGetters($obj)
{
$this->assertEquals($obj->getSender_batch_id(), "TestSample");
$this->assertEquals($obj->getEmail_subject(), "TestSample");
$this->assertEquals($obj->getRecipient_type(), "TestSample");
}
/**
* @depends testSerializationDeserialization
* @param PayoutSenderBatchHeader $obj
*/
public function testDeprecatedSetterNormalGetter($obj)
{
// Check for Sender_batch_id
$obj->setSenderBatchId(null);
$this->assertNull($obj->getSender_batch_id());
$this->assertNull($obj->getSenderBatchId());
$this->assertSame($obj->getSenderBatchId(), $obj->getSender_batch_id());
$obj->setSender_batch_id("TestSample");
$this->assertEquals($obj->getSender_batch_id(), "TestSample");
// Check for Email_subject
$obj->setEmailSubject(null);
$this->assertNull($obj->getEmail_subject());
$this->assertNull($obj->getEmailSubject());
$this->assertSame($obj->getEmailSubject(), $obj->getEmail_subject());
$obj->setEmail_subject("TestSample");
$this->assertEquals($obj->getEmail_subject(), "TestSample");
// Check for Recipient_type
$obj->setRecipientType(null);
$this->assertNull($obj->getRecipient_type());
$this->assertNull($obj->getRecipientType());
$this->assertSame($obj->getRecipientType(), $obj->getRecipient_type());
$obj->setRecipient_type("TestSample");
$this->assertEquals($obj->getRecipient_type(), "TestSample");
//Test All Deprecated Getters and Normal Getters
$this->testDeprecatedGetters($obj);
$this->testGetters($obj);
}
}