Enabled Billing Plans and Agreements APIs

- Added API Classes, Samples, and Tests
- Updated Functional Tests
- Updated Documentation with new SDK Name
- Updated Few Samples to use newer nicer result page
This commit is contained in:
japatel
2014-10-31 10:16:13 -05:00
parent f55fd3d984
commit 4d481ad104
192 changed files with 13310 additions and 1045 deletions

View File

@@ -24,7 +24,7 @@ class ItemListTest extends \PHPUnit_Framework_TestCase
$itemList = new ItemList();
$itemList->setItems(array($item));
$itemList->setShippingAddress(ShippingAddressTest::createAddress());
$itemList->setShippingAddress(ShippingAddressTest::getObject());
return $itemList;
}
@@ -38,7 +38,7 @@ class ItemListTest extends \PHPUnit_Framework_TestCase
{
$items = $this->items->getItems();
$this->assertEquals(ItemTest::createItem(), $items[0]);
$this->assertEquals(ShippingAddressTest::createAddress(), $this->items->getShippingAddress());
$this->assertEquals(ShippingAddressTest::getObject(), $this->items->getShippingAddress());
}
public function testSerializeDeserialize()