Payments API Updates

This commit is contained in:
Jay Patel
2015-10-02 14:25:46 -05:00
parent 02fca1bda4
commit a37b880e96
112 changed files with 3857 additions and 1495 deletions

View File

@@ -13,6 +13,7 @@ class BankTokenTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object BankToken
*
* @return string
*/
public static function getJson()
@@ -22,6 +23,7 @@ class BankTokenTest extends \PHPUnit_Framework_TestCase
/**
* Gets Object Instance with Json data filled in
*
* @return BankToken
*/
public static function getObject()
@@ -32,6 +34,7 @@ class BankTokenTest extends \PHPUnit_Framework_TestCase
/**
* Tests for Serialization and Deserialization Issues
*
* @return BankToken
*/
public function testSerializationDeserialization()
@@ -56,4 +59,5 @@ class BankTokenTest extends \PHPUnit_Framework_TestCase
$this->assertEquals($obj->getMandateReferenceNumber(), "TestSample");
}
}