@@ -124,7 +124,9 @@ discard block |
||
| 124 | 124 | * @param int|null |
| 125 | 125 | * @param string |
| 126 | 126 | * @param Mage_Sales_Model_Quote_Item|null |
| 127 | - * @return Mage_Sales_Model_Quote_Item |
|
| 127 | + * @param string $sku |
|
| 128 | + * @param integer $qty |
|
| 129 | + * @return EcomDev_PHPUnit_Mock_Proxy |
|
| 128 | 130 | */ |
| 129 | 131 | protected function _mockQuoteItem( |
| 130 | 132 | $sku, |
@@ -177,6 +179,9 @@ discard block |
||
| 177 | 179 | * @param int |
| 178 | 180 | * @param string |
| 179 | 181 | * @param int |
| 182 | + * @param integer $quantity |
|
| 183 | + * @param string $sku |
|
| 184 | + * @param integer|null $itemId |
|
| 180 | 185 | * @return EbayEnterprise_Inventory_Model_Quantity |
| 181 | 186 | */ |
| 182 | 187 | protected function _createQuantity($quantity, $sku, $itemId) |
@@ -199,20 +199,20 @@ |
||
| 199 | 199 | protected function _mockQuantityResults($resultsData) |
| 200 | 200 | { |
| 201 | 201 | $bySku = array_map( |
| 202 | - function ($result) { |
|
| 202 | + function($result) { |
|
| 203 | 203 | return [$result['sku'], $result['quantity']]; |
| 204 | 204 | }, |
| 205 | 205 | $resultsData |
| 206 | 206 | ); |
| 207 | 207 | $byId = array_map( |
| 208 | - function ($result) { |
|
| 208 | + function($result) { |
|
| 209 | 209 | return [$result['item_id'], $result['quantity']]; |
| 210 | 210 | }, |
| 211 | 211 | // If an item doesn't have an id, it will not be retrievable |
| 212 | 212 | // by id, so filter out any results that have an empty item id. |
| 213 | 213 | array_filter( |
| 214 | 214 | $resultsData, |
| 215 | - function ($result) { |
|
| 215 | + function($result) { |
|
| 216 | 216 | return (bool) $result['item_id']; |
| 217 | 217 | } |
| 218 | 218 | ) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | * Sum totals field from each address for the order. |
| 95 | 95 | * |
| 96 | 96 | * @param string |
| 97 | - * @return float |
|
| 97 | + * @return integer |
|
| 98 | 98 | */ |
| 99 | 99 | protected function _sumAddressTotals($totalField) |
| 100 | 100 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2015 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2015 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | /** @var Mage_Sales_Model_Resource_Setup */ |
| 17 | 17 | $installer = $this; |
@@ -110,6 +110,7 @@ discard block |
||
| 110 | 110 | * Retrieve item object by quote item Id |
| 111 | 111 | * |
| 112 | 112 | * @param int |
| 113 | + * @param integer $itemId |
|
| 113 | 114 | * @return Mage_Sales_Model_Orders_Item |
| 114 | 115 | */ |
| 115 | 116 | public function getItemByQuoteItemId($itemId) |
@@ -121,6 +122,7 @@ discard block |
||
| 121 | 122 | * Remove item from collection |
| 122 | 123 | * |
| 123 | 124 | * @param int |
| 125 | + * @param integer $itemId |
|
| 124 | 126 | * @return self |
| 125 | 127 | */ |
| 126 | 128 | public function removeItem($itemId) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2015 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2015 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | /** @var Mage_Sales_Model_Resource_Setup */ |
| 17 | 17 | $installer = $this; |
@@ -29,7 +29,9 @@ |
||
| 29 | 29 | * @param bool |
| 30 | 30 | * @param int |
| 31 | 31 | * @param string |
| 32 | - * @return Mage_Sales_Model_Order_Address |
|
| 32 | + * @param integer $addressId |
|
| 33 | + * @param integer $orderId |
|
| 34 | + * @return EcomDev_PHPUnit_Mock_Proxy |
|
| 33 | 35 | */ |
| 34 | 36 | protected function _stubAddress($addressId, $isPrimaryShipping, $orderId, $addressType) |
| 35 | 37 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -34,6 +34,8 @@ |
||
| 34 | 34 | * |
| 35 | 35 | * @param int |
| 36 | 36 | * @param int |
| 37 | + * @param integer $addressId |
|
| 38 | + * @param integer $orderId |
|
| 37 | 39 | * @return EbayEnterprise_Multishipping_Override_Model_Sales_Order_Address |
| 38 | 40 | */ |
| 39 | 41 | protected function _getPrimaryShippingAddress($addressId, $orderId) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | * Create a stub order address with the provided address type. |
| 120 | 120 | * |
| 121 | 121 | * @param string |
| 122 | - * @return Mage_Sales_Model_Order_Address |
|
| 122 | + * @return EcomDev_PHPUnit_Mock_Proxy |
|
| 123 | 123 | */ |
| 124 | 124 | protected function _stubOrderAddress($type) |
| 125 | 125 | { |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * |
| 134 | 134 | * @param string |
| 135 | 135 | * @param Mage_Sales_Model_Quote_Item_Abstract[] |
| 136 | - * @return Mage_Sales_Model_Quote_Address |
|
| 136 | + * @return EcomDev_PHPUnit_Mock_Proxy |
|
| 137 | 137 | */ |
| 138 | 138 | protected function _stubQuoteAddress($type, array $items = []) |
| 139 | 139 | { |
@@ -149,7 +149,8 @@ discard block |
||
| 149 | 149 | * |
| 150 | 150 | * @param string|null |
| 151 | 151 | * @param Mage_Sales_Model_Quote_Item_Abstract|null |
| 152 | - * @return Mage_Sales_Model_Quote_Item_Abstract |
|
| 152 | + * @param string $productType |
|
| 153 | + * @return EcomDev_PHPUnit_Mock_Proxy |
|
| 153 | 154 | */ |
| 154 | 155 | protected function _stubQuoteItem( |
| 155 | 156 | $productType = null, |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | $this->_checkoutDispatcher = $this->getHelperMock( |
| 57 | 57 | 'ebayenterprise_multishipping/dispatcher_interface', |
| 58 | - ['dispatchBeforeOrderSubmit', 'dispatchOrderSubmitSuccess', 'dispatchOrderSubmitFailure', 'dispatchAfterOrderSubmit',], |
|
| 58 | + ['dispatchBeforeOrderSubmit', 'dispatchOrderSubmitSuccess', 'dispatchOrderSubmitFailure', 'dispatchAfterOrderSubmit', ], |
|
| 59 | 59 | true |
| 60 | 60 | ); |
| 61 | 61 | $this->_multishippingFactory = $this->getHelperMock( |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | ); |
| 65 | 65 | $this->_quoteConvertor = $this->getModelMock( |
| 66 | 66 | 'sales/convert_quote', |
| 67 | - ['toOrder', 'addressToOrderAddress', 'itemToOrderItem', 'paymentToOrderPayment',] |
|
| 67 | + ['toOrder', 'addressToOrderAddress', 'itemToOrderItem', 'paymentToOrderPayment', ] |
|
| 68 | 68 | ); |
| 69 | 69 | $this->_transaction = $this->getModelMock( |
| 70 | 70 | 'core/resource_transaction', |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -350,7 +350,7 @@ |
||
| 350 | 350 | /** |
| 351 | 351 | * Ensure the proper data exist in before proceeding to show the current page. |
| 352 | 352 | * |
| 353 | - * @return self |
|
| 353 | + * @return boolean |
|
| 354 | 354 | */ |
| 355 | 355 | protected function _isValidOperation() |
| 356 | 356 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -75,7 +75,7 @@ |
||
| 75 | 75 | /** |
| 76 | 76 | * Determine if order cancel reasons are configured. |
| 77 | 77 | * |
| 78 | - * @return array | null |
|
| 78 | + * @return boolean | null |
|
| 79 | 79 | */ |
| 80 | 80 | public function hasOrderCancelReason() |
| 81 | 81 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |
@@ -126,7 +126,7 @@ |
||
| 126 | 126 | * |
| 127 | 127 | * @param IPayload |
| 128 | 128 | * @param string |
| 129 | - * @return array |
|
| 129 | + * @return string |
|
| 130 | 130 | */ |
| 131 | 131 | public function getListAsSerialize(IPayload $payload, $getter) |
| 132 | 132 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | class EbayEnterprise_Tax_Test_Model_Total_Quote_Address_TaxTest extends EcomDev_PHPUnit_Test_Case |
| 17 | 17 | { |