diff --git a/README.md b/README.md index fff96bdb537..a71a20d0ade 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ level of backwards compatibility to the official releases. ## Table of contents +- [Releases and Versioning](#releases-and-versioning) + - [Currently Maintained Versions](#currently-maintained-versions) - [Requirements](#requirements) - [Installation](#installation) - [Manual Install](#manual-install) @@ -28,22 +30,42 @@ level of backwards compatibility to the official releases. - [Secure your installation](#secure-your-installation) - [Apache .htaccess](#apache-htaccess) - [Nginx](#nginx) +- [Magento 1 Compatibility](#magento-1-compatibility) - [Changes](#changes) - [Between Magento 1.9.4.5 and OpenMage 19.x](#between-magento-1945-and-openmage-19x) - - [Between OpenMage 19.4.18 / 20.0.16 and 19.4.19 / 20.0.17](#between-openmage-19418--20016-and-19419--20017) - [Since OpenMage 19.5.0 / 20.1.0](#since-openmage-1950--2010) - [New Config Options](#new-config-options) - [New Events](#new-events) - [Changes to SOAP/WSDL](#changes-to-soapwsdl) - [Development Environment with ddev](#development-environment-with-ddev) -- [Development with PHP 8.1+](#development-with-php-81) - [PhpStorm Factory Helper](#phpstorm-factory-helper) -- [Versioning](#versioning) - [Public Communication](#public-communication) - [Maintainers](#maintainers) - [License](#license) - [Contributors](#contributors-) +## Releases and Versioning + +This project more strictly adheres to [Semantic Versioning](http://semver.org/) compared to the original Magento version numbering system where the "1" +was essentially a fixed number. See the [Terminology](https://github.com/OpenMage/rfcs/blob/main/accepted/0002-release-schedule.md#terminology) +section of [RFC 0002 - Release Schedule](https://github.com/OpenMage/rfcs/blob/main/accepted/0002-release-schedule.md) for more information on how the terms MAJOR, MINOR and PATCH are defined and applied. + +The OpenMage team and community maintains OpenMage LTS versions as follows: + +- The latest MAJOR.MINOR version always receives PATCH updates. +- The latest MAJOR version always receives MINOR updates. +- The latest MAJOR.MINOR branch for each MAJOR version receives PATCH updates for at least 2 years from the time of inception of the initial MAJOR version release. + +In a nutshell: + +- If you want to stay on the cutting edge with the latest improvements use the latest MAJOR version. +- If you want maximum backwards compatibility and minimal upgrade hassle use the next-latest MAJOR version so that you can still receive important security/stability/regression fixes. + +### Currently Maintained Versions + +- 20.x is the latest MAJOR version and will receive PATCH updates until 2 years after the date that 21.x is released. +- 19.4.x will receive PATCH updates until April 4, 2025. + ## Requirements - PHP 7.4+ (PHP 8.0 is supported, PHP 8.1 supported but some warnings may be shown/logged, PHP 8.2 is usable but still being tested) @@ -166,6 +188,14 @@ RewriteRule ^api/rest api.php?type=rest [QSA,L] rewrite ^/api/(\w+).*$ /api.php?type=$1 last;` ``` +## Magento 1 Compatibility + +OpenMage LTS 19.4.0 is the first tagged version using the OpenMage LTS version naming system and all 19.x versions are mostly backward-compatible +with Magento 1.9.4.x. + +OpenMage LTS 20.x and later have more changes that may not be 100% backward-compatible, but minimizing migration and upgrade hassle for users is always +considered an important goal and factors heavily into the changes that are accepted even when accepting changes for "MAJOR" releases, described in [Releases and Versioning](#releases-and-versioning) above. + ## Changes Most important changes will be listed here, all other changes since `19.4.0` can be found in @@ -320,11 +350,6 @@ You can add additional meta files in this directory to cover your own project fi [PhpStorm advanced metadata](https://www.jetbrains.com/help/phpstorm/ide-advanced-metadata.html) for more information. -## Versioning - -Though Magento does __not__ follow [Semantic Versioning](http://semver.org/) we aim to provide a workable system for -dependency definition. - ## Public Communication * [Discord](https://discord.gg/EV8aNbU) (maintained by Flyingmana) diff --git a/api.php b/api.php index e22b5164e03..97269ee23af 100644 --- a/api.php +++ b/api.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/app/Mage.php b/app/Mage.php index 6330f8f24b3..882b1da7b19 100644 --- a/app/Mage.php +++ b/app/Mage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2017-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/app/bootstrap.php b/app/bootstrap.php index d6c0ce4bab4..8c1d26199eb 100644 --- a/app/bootstrap.php +++ b/app/bootstrap.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2020 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php index f5ad3f5b565..d9980ceb878 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Inventory.php @@ -64,9 +64,6 @@ public function getDefaultConfigValue($field) return Mage::getStoreConfig(Mage_CatalogInventory_Model_Stock_Item::XML_PATH_ITEM . $field, $this->getStoreId()); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('catalog')->__('Inventory'); diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php index 88697172090..0de2286090e 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Action/Attribute/Tab/Websites.php @@ -37,9 +37,6 @@ public function getStoreCollection(Mage_Core_Model_Store_Group $group) return $group->getStores(); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('catalog')->__('Websites'); diff --git a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Grid.php b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Grid.php index 8321d03f799..4cf40f4bd2b 100644 --- a/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Grid.php +++ b/app/code/core/Mage/Adminhtml/Block/Catalog/Search/Grid.php @@ -16,7 +16,6 @@ use Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract as MassAction; /** - * @category Mage * @category Mage * @package Mage_Adminhtml * @author Magento Core Team diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php index 863d07363a8..1a8c0528761 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Items/Abstract.php @@ -213,10 +213,6 @@ public function getCreditmemo() return Mage::registry('current_creditmemo'); } - /** - * ######################### SALES ################################## - */ - /** * Retrieve available order * diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php index ea5ba9d0e18..ebacf8e02a1 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/Create/Coupons/Form.php @@ -27,6 +27,9 @@ public function __construct() $this->setId('sales_order_create_coupons_form'); } + /** + * @return string + */ public function getCouponCode() { return $this->getParentBlock()->getQuote()->getCouponCode(); diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php index 5d8857f6069..709799fe566 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Creditmemos.php @@ -120,9 +120,6 @@ public function getGridUrl() return $this->getUrl('*/*/creditmemos', ['_current' => true]); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('sales')->__('Credit Memos'); @@ -130,12 +127,12 @@ public function getTabLabel() public function getTabTitle() { - return Mage::helper('sales')->__('Order Credit Memos'); + return Mage::helper('sales')->__('Credit Memos'); } public function canShowTab() { - return true; + return Mage::getSingleton('admin/session')->isAllowed('sales/creditmemo'); } public function isHidden() diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php index 592b011ba50..1fa070907b8 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/History.php @@ -220,7 +220,7 @@ public function getTabLabel() */ public function getTabTitle() { - return Mage::helper('sales')->__('Order History'); + return Mage::helper('sales')->__('Comments History'); } /** diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php index 5cd46a44fe3..9e44667402a 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Info.php @@ -104,9 +104,6 @@ public function getViewUrl($orderId) return $this->getUrl('*/*/*', ['order_id' => $orderId]); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('sales')->__('Information'); @@ -114,7 +111,7 @@ public function getTabLabel() public function getTabTitle() { - return Mage::helper('sales')->__('Order Information'); + return Mage::helper('sales')->__('Information'); } public function canShowTab() diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php index 0c971edee1c..87ac5d2add5 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Invoices.php @@ -121,9 +121,6 @@ public function getGridUrl() return $this->getUrl('*/*/invoices', ['_current' => true]); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('sales')->__('Invoices'); @@ -131,12 +128,12 @@ public function getTabLabel() public function getTabTitle() { - return Mage::helper('sales')->__('Order Invoices'); + return Mage::helper('sales')->__('Invoices'); } public function canShowTab() { - return true; + return Mage::getSingleton('admin/session')->isAllowed('sales/invoice'); } public function isHidden() diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php index 79dba6c7e29..a230d055d28 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Shipments.php @@ -106,9 +106,6 @@ public function getGridUrl() return $this->getUrl('*/*/shipments', ['_current' => true]); } - /** - * ######################## TAB settings ################################# - */ public function getTabLabel() { return Mage::helper('sales')->__('Shipments'); @@ -116,7 +113,7 @@ public function getTabLabel() public function getTabTitle() { - return Mage::helper('sales')->__('Order Shipments'); + return Mage::helper('sales')->__('Shipments'); } public function canShowTab() @@ -124,7 +121,7 @@ public function canShowTab() if ($this->getOrder()->getIsVirtual()) { return false; } - return true; + return Mage::getSingleton('admin/session')->isAllowed('sales/shipment'); } public function isHidden() diff --git a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php index 6dc5bf0956a..9daaa77563d 100644 --- a/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php +++ b/app/code/core/Mage/Adminhtml/Block/Sales/Order/View/Tab/Transactions.php @@ -69,7 +69,7 @@ public function getTabTitle() */ public function canShowTab() { - return true; + return Mage::getSingleton('admin/session')->isAllowed('sales/transactions'); } /** diff --git a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php index 80e54946f81..b381b917c57 100644 --- a/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php +++ b/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php @@ -115,14 +115,10 @@ public function getCondition() } $rate = $this->_getRate($displayCurrency, $this->getColumn()->getCurrencyCode()); - if (isset($value['from'])) { - $from = $value['from'] * $rate; - $value['from'] = sprintf('%F', $from); - } - - if (isset($value['to'])) { - $to = $value['to'] * $rate; - $value['to'] = sprintf('%F', $to); + foreach (['from', 'to'] as $key) { + if (isset($value[$key]) && is_numeric($value[$key])) { + $value[$key] = sprintf('%F', $value[$key] * $rate); + } } $this->prepareRates($displayCurrency); diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php index 7cc05c2ad64..47c83397a0f 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Creditmemo.php @@ -45,7 +45,7 @@ protected function _construct() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/creditmemo') ->_addBreadcrumb($this->__('Sales'), $this->__('Sales')) ->_addBreadcrumb($this->__('Credit Memos'), $this->__('Credit Memos')); return $this; diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php index db5d3fb38c5..2526af8b9a8 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Invoice.php @@ -44,7 +44,7 @@ protected function _construct() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/invoice') ->_addBreadcrumb($this->__('Sales'), $this->__('Sales')) ->_addBreadcrumb($this->__('Invoices'), $this->__('Invoices')); return $this; diff --git a/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php b/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php index 6be5115cecb..a20d214b812 100644 --- a/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php +++ b/app/code/core/Mage/Adminhtml/Controller/Sales/Shipment.php @@ -44,7 +44,7 @@ protected function _construct() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/shipment') ->_addBreadcrumb($this->__('Sales'), $this->__('Sales')) ->_addBreadcrumb($this->__('Shipments'), $this->__('Shipments')); return $this; diff --git a/app/code/core/Mage/Adminhtml/Model/Config/Data.php b/app/code/core/Mage/Adminhtml/Model/Config/Data.php index 90fdb895c6d..d6d881fe18a 100644 --- a/app/code/core/Mage/Adminhtml/Model/Config/Data.php +++ b/app/code/core/Mage/Adminhtml/Model/Config/Data.php @@ -138,7 +138,7 @@ public function save() } } - $backendClass = $helper->getBackendModelByFieldConfig($fieldConfig); + $backendClass = $fieldConfig ? $helper->getBackendModelByFieldConfig($fieldConfig) : false; if (!$backendClass) { $backendClass = 'core/config_data'; } diff --git a/app/code/core/Mage/Adminhtml/Model/Search/Order.php b/app/code/core/Mage/Adminhtml/Model/Search/Order.php index d5f6a628df2..29b72d48973 100644 --- a/app/code/core/Mage/Adminhtml/Model/Search/Order.php +++ b/app/code/core/Mage/Adminhtml/Model/Search/Order.php @@ -53,12 +53,10 @@ public function load() ['attribute' => 'billing_firstname', 'like' => $query . '%'], ['attribute' => 'billing_lastname', 'like' => $query . '%'], ['attribute' => 'billing_telephone', 'like' => $query . '%'], - ['attribute' => 'billing_postcode', 'like' => $query . '%'], ['attribute' => 'shipping_firstname', 'like' => $query . '%'], ['attribute' => 'shipping_lastname', 'like' => $query . '%'], ['attribute' => 'shipping_telephone', 'like' => $query . '%'], - ['attribute' => 'shipping_postcode', 'like' => $query . '%'], ]) ->setCurPage($this->getStart()) ->setPageSize($this->getLimit()) diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php index 4ce73a5ed23..1a5bfca7a8a 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/AttributeController.php @@ -63,7 +63,7 @@ protected function _initAction() $this->loadLayout('popup'); } else { $this->loadLayout() - ->_setActiveMenu('catalog/attributes') + ->_setActiveMenu('catalog/attributes/attributes') ->_addBreadcrumb(Mage::helper('catalog')->__('Catalog'), Mage::helper('catalog')->__('Catalog')) ->_addBreadcrumb( Mage::helper('catalog')->__('Manage Product Attributes'), diff --git a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php index 1c7ceeb4495..86ff85a9b03 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Catalog/Product/SetController.php @@ -37,7 +37,7 @@ public function indexAction() $this->_setTypeId(); $this->loadLayout(); - $this->_setActiveMenu('catalog/sets'); + $this->_setActiveMenu('catalog/attributes/sets'); $this->_addBreadcrumb(Mage::helper('catalog')->__('Catalog'), Mage::helper('catalog')->__('Catalog')); $this->_addBreadcrumb( @@ -71,7 +71,7 @@ public function editAction() Mage::register('current_attribute_set', $attributeSet); $this->loadLayout(); - $this->_setActiveMenu('catalog/sets'); + $this->_setActiveMenu('catalog/attributes/sets'); $this->getLayout()->getBlock('head')->setCanLoadExtJs(true); $this->_addBreadcrumb(Mage::helper('catalog')->__('Catalog'), Mage::helper('catalog')->__('Catalog')); diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php index 698c9dbc149..23f0e79a677 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/CreditmemoController.php @@ -188,7 +188,7 @@ public function viewAction() $block = $this->getLayout()->getBlock('sales_creditmemo_view'); $block->updateBackButtonUrl($this->getRequest()->getParam('come_from')); - $this->_setActiveMenu('sales/order') + $this->_setActiveMenu('sales/creditmemo') ->renderLayout(); } else { $this->_redirect('*/*'); @@ -223,7 +223,7 @@ public function newAction() } $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/creditmemo') ->renderLayout(); } else { $this->_forward('noRoute'); diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php index d677e315ca7..e5792e6d063 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/InvoiceController.php @@ -134,7 +134,7 @@ public function viewAction() $this->_title(sprintf("#%s", $invoice->getIncrementId())); $this->loadLayout() - ->_setActiveMenu('sales/order'); + ->_setActiveMenu('sales/invoice'); /** @var Mage_Adminhtml_Block_Sales_Order_Invoice_View $block */ $block = $this->getLayout()->getBlock('sales_invoice_view'); @@ -172,7 +172,7 @@ public function newAction() } $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/invoice') ->renderLayout(); } else { $this->_redirect('*/sales_order/view', ['order_id' => $this->getRequest()->getParam('order_id')]); diff --git a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php index e89a0228aef..6cbe5e17dcf 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Sales/Order/ShipmentController.php @@ -128,7 +128,7 @@ public function viewAction() $block = $this->getLayout()->getBlock('sales_shipment_view'); $block->updateBackButtonUrl($this->getRequest()->getParam('come_from')); - $this->_setActiveMenu('sales/order') + $this->_setActiveMenu('sales/shipment') ->renderLayout(); } else { $this->_redirect('*/*/'); @@ -160,7 +160,7 @@ public function newAction() } $this->loadLayout() - ->_setActiveMenu('sales/order') + ->_setActiveMenu('sales/shipment') ->renderLayout(); } else { $this->_redirect('*/sales_order/view', ['order_id' => $this->getRequest()->getParam('order_id')]); diff --git a/app/code/core/Mage/Adminhtml/controllers/SitemapController.php b/app/code/core/Mage/Adminhtml/controllers/SitemapController.php index 3ef35401c75..30b5939e2e7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/SitemapController.php +++ b/app/code/core/Mage/Adminhtml/controllers/SitemapController.php @@ -53,7 +53,7 @@ protected function _initAction() { // load layout, set active menu and breadcrumbs $this->loadLayout() - ->_setActiveMenu('catalog/system_sitemap') + ->_setActiveMenu('catalog/sitemap') ->_addBreadcrumb( Mage::helper('catalog')->__('Catalog'), Mage::helper('catalog')->__('Catalog') diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/Class/CustomerController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/Class/CustomerController.php index 1440838a154..e7c42e47d91 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/Class/CustomerController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/Class/CustomerController.php @@ -158,7 +158,7 @@ public function deleteAction() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/tax/tax_class_customer') + ->_setActiveMenu('sales/tax/classes_customer') ->_addBreadcrumb(Mage::helper('tax')->__('Sales'), Mage::helper('tax')->__('Sales')) ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')) ->_addBreadcrumb(Mage::helper('tax')->__('Manage Customer Tax Classes'), Mage::helper('tax')->__('Manage Customer Tax Classes')) diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/Class/ProductController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/Class/ProductController.php index b007ec4ea19..8127e8b36d7 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/Class/ProductController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/Class/ProductController.php @@ -157,7 +157,7 @@ public function deleteAction() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/tax/tax_class_product') + ->_setActiveMenu('sales/tax/classes_product') ->_addBreadcrumb(Mage::helper('tax')->__('Sales'), Mage::helper('tax')->__('Sales')) ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')) ->_addBreadcrumb(Mage::helper('tax')->__('Manage Product Tax Classes'), Mage::helper('tax')->__('Manage Product Tax Classes')) diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php index d08d58c0c8c..310a1c2b956 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/ClassController.php @@ -24,7 +24,6 @@ class Mage_Adminhtml_Tax_ClassController extends Mage_Adminhtml_Controller_Actio { /** * save class action - * */ public function saveAction() { @@ -42,7 +41,7 @@ public function saveAction() ); $this->_redirect($classUrl); - return ; + return; } catch (Mage_Core_Exception $e) { Mage::getSingleton('adminhtml/session')->addError($e->getMessage()); Mage::getSingleton('adminhtml/session')->setClassData($postData); @@ -70,7 +69,7 @@ protected function _initAction() { $classType = strtolower($this->getRequest()->getParam('classType')); $this->loadLayout() - ->_setActiveMenu('sales/tax/tax_classes_' . $classType) + ->_setActiveMenu('sales/tax/classes_' . $classType) ->_addBreadcrumb(Mage::helper('tax')->__('Sales'), Mage::helper('tax')->__('Sales')) ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')) ; diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php index ea52e39b7a5..a63f53392dd 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/RateController.php @@ -221,7 +221,7 @@ public function exportXmlAction() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/tax_rates') + ->_setActiveMenu('sales/tax/rates') ->_addBreadcrumb(Mage::helper('tax')->__('Sales'), Mage::helper('tax')->__('Sales')) ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')); return $this; @@ -240,7 +240,7 @@ public function importExportAction() $this->_title($this->__('Import and Export Tax Rates')); $this->loadLayout() - ->_setActiveMenu('sales/tax_importExport') + ->_setActiveMenu('sales/tax/import_export') ->_addContent($this->getLayout()->createBlock('adminhtml/tax_rate_importExport')) ->renderLayout(); } diff --git a/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php b/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php index 6a15fc4486b..b7a04513e28 100644 --- a/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php +++ b/app/code/core/Mage/Adminhtml/controllers/Tax/RuleController.php @@ -207,7 +207,7 @@ public function deleteAction() protected function _initAction() { $this->loadLayout() - ->_setActiveMenu('sales/tax/rule') + ->_setActiveMenu('sales/tax/rules') ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')) ->_addBreadcrumb(Mage::helper('tax')->__('Tax Rules'), Mage::helper('tax')->__('Tax Rules')) ; diff --git a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php index 71bf5c2fe8f..c7e839ec32e 100644 --- a/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php +++ b/app/code/core/Mage/CatalogRule/Model/Rule/Action/Product.php @@ -42,10 +42,10 @@ public function loadAttributeOptions() public function loadOperatorOptions() { $this->setOperatorOption([ - 'to_fixed' => Mage::helper('cataloginventory')->__('To Fixed Value'), - 'to_percent' => Mage::helper('cataloginventory')->__('To Percentage'), - 'by_fixed' => Mage::helper('cataloginventory')->__('By Fixed value'), - 'by_percent' => Mage::helper('cataloginventory')->__('By Percentage'), + 'to_fixed' => static::$translate ? Mage::helper('cataloginventory')->__('To Fixed Value') : 'To Fixed Value', + 'to_percent' => static::$translate ? Mage::helper('cataloginventory')->__('To Percentage') : 'To Percentage', + 'by_fixed' => static::$translate ? Mage::helper('cataloginventory')->__('By Fixed value') : 'By Fixed value', + 'by_percent' => static::$translate ? Mage::helper('cataloginventory')->__('By Percentage') : 'By Percentage', ]); return $this; } diff --git a/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php b/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php index 0ce4d550c6b..dd551765d80 100644 --- a/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php +++ b/app/code/core/Mage/CatalogSearch/Model/Resource/Search/Collection.php @@ -115,7 +115,7 @@ protected function _getSearchEntityIdsSql($query) /** @var Mage_Core_Model_Resource_Helper_Abstract $resHelper */ $resHelper = Mage::getResourceHelper('core'); - $likeOptions = ['position' => 'any']; + $likeOptions = ['position' => 'start']; /** * Collect tables and attribute ids of attributes with string values diff --git a/app/code/core/Mage/ConfigurableSwatches/Helper/Data.php b/app/code/core/Mage/ConfigurableSwatches/Helper/Data.php index 45323ac39b3..f59aa9b0307 100644 --- a/app/code/core/Mage/ConfigurableSwatches/Helper/Data.php +++ b/app/code/core/Mage/ConfigurableSwatches/Helper/Data.php @@ -75,6 +75,9 @@ public function getHyphenatedString($str) */ public static function normalizeKey($key) { + if ($key === null || $key === '') { + return ''; + } if (function_exists('mb_strtolower')) { return trim(mb_strtolower($key, 'UTF-8')); } diff --git a/app/code/core/Mage/Core/Model/App.php b/app/code/core/Mage/Core/Model/App.php index dee37dadb04..6525c73f94e 100644 --- a/app/code/core/Mage/Core/Model/App.php +++ b/app/code/core/Mage/Core/Model/App.php @@ -1016,13 +1016,14 @@ public function getWebsites($withDefault = false, $codeKey = false) $websites = []; if (is_array($this->_websites)) { foreach ($this->_websites as $website) { - if (!$withDefault && $website->getId() == 0) { + $id = $website->getId(); + if (!$withDefault && $id == 0) { continue; } if ($codeKey) { $websites[$website->getCode()] = $website; } else { - $websites[$website->getId()] = $website; + $websites[$id] = $website; } } } diff --git a/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php b/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php index 3bb9aa94510..37b4b6b2849 100644 --- a/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php +++ b/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php @@ -33,6 +33,7 @@ class Mage_Core_Model_Session_Abstract_Varien extends Varien_Object public const VALIDATOR_SESSION_LIFETIME = 'session_lifetime'; public const VALIDATOR_PASSWORD_CREATE_TIMESTAMP = 'password_create_timestamp'; public const SECURE_COOKIE_CHECK_KEY = '_secure_cookie_check'; + public const REGISTRY_CONCURRENCY_ERROR = 'concurrent_connections_exceeded'; /** @var bool Flag true if session validator data has already been evaluated */ protected static $isValidated = false; @@ -71,6 +72,9 @@ public function start($sessionName = null) /* @var Cm_RedisSession_Model_Session $sessionResource */ $sessionResource = Mage::getSingleton('cm_redissession/session'); $sessionResource->setSaveHandler(); + if (method_exists($sessionResource, 'setDieOnError')) { + $sessionResource->setDieOnError(false); + } break; case 'user': // getSessionSavePath represents static function for custom session handler setup @@ -148,7 +152,20 @@ public function start($sessionName = null) session_cache_limiter((string)$sessionCacheLimiter); } - session_start(); + // Start session, abort and render error page if it fails + try { + if (session_start() === false) { + throw new Exception('Unable to start session.'); + } + } catch (Throwable $e) { + session_abort(); + if (Mage::registry(self::REGISTRY_CONCURRENCY_ERROR)) { + require_once Mage::getBaseDir() . DS . 'errors' . DS . '503.php'; + die(); + } else { + Mage::printException($e); + } + } Mage::dispatchEvent('session_before_renew_cookie', ['cookie' => $cookie]); diff --git a/app/code/core/Mage/Customer/Block/Form/Login.php b/app/code/core/Mage/Customer/Block/Form/Login.php index 1f49bdc8bb5..9216881e18f 100644 --- a/app/code/core/Mage/Customer/Block/Form/Login.php +++ b/app/code/core/Mage/Customer/Block/Form/Login.php @@ -26,15 +26,6 @@ class Mage_Customer_Block_Form_Login extends Mage_Core_Block_Template { private $_username = -1; - /** - * @inheritDoc - */ - protected function _prepareLayout() - { - $this->getLayout()->getBlock('head')->setTitle(Mage::helper('customer')->__('Customer Login')); - return parent::_prepareLayout(); - } - /** * Retrieve form posting url * diff --git a/app/code/core/Mage/Customer/controllers/AccountController.php b/app/code/core/Mage/Customer/controllers/AccountController.php index 3fa539b1cb3..b0630248ec6 100644 --- a/app/code/core/Mage/Customer/controllers/AccountController.php +++ b/app/code/core/Mage/Customer/controllers/AccountController.php @@ -125,6 +125,7 @@ public function loginAction() $this->loadLayout(); $this->_initLayoutMessages('customer/session'); $this->_initLayoutMessages('catalog/session'); + $this->getLayout()->getBlock('head')->setTitle($this->__('Customer Login')); $this->renderLayout(); } diff --git a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php index a9ca064474c..cecd570de5a 100644 --- a/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php +++ b/app/code/core/Mage/Eav/Model/Entity/Attribute/Source/Table.php @@ -75,7 +75,7 @@ public function getAllOptions($withEmpty = true, $defaultValues = false) public function getOptionText($value) { $isMultiple = false; - if (strpos($value, ',')) { + if ($value && strpos($value, ',')) { $isMultiple = true; $value = explode(',', $value); } diff --git a/app/code/core/Mage/GoogleAnalytics/Block/Ga.php b/app/code/core/Mage/GoogleAnalytics/Block/Ga.php index 4f03e1a94e3..f8b7eb88110 100644 --- a/app/code/core/Mage/GoogleAnalytics/Block/Ga.php +++ b/app/code/core/Mage/GoogleAnalytics/Block/Ga.php @@ -129,7 +129,9 @@ protected function _getOrdersTrackingCode() { /** @var Mage_GoogleAnalytics_Helper_Data $helper */ $helper = $this->helper('googleanalytics'); - if ($helper->isUseUniversalAnalytics()) { + if ($helper->isUseAnalytics4()) { + return $this->_getOrdersTrackingCodeAnalytics4(); + } elseif ($helper->isUseUniversalAnalytics()) { return $this->_getOrdersTrackingCodeUniversal(); } @@ -190,6 +192,46 @@ protected function _getOrdersTrackingCodeUniversal() return implode("\n", $result); } + /** + * @return string + * @throws Mage_Core_Model_Store_Exception + */ + protected function _getOrdersTrackingCodeAnalytics4() + { + $orderIds = $this->getOrderIds(); + if (empty($orderIds) || !is_array($orderIds)) { + return ''; + } + $collection = Mage::getResourceModel('sales/order_collection') + ->addFieldToFilter('entity_id', ['in' => $orderIds]); + $result = []; + /** @var Mage_Sales_Model_Order $order */ + foreach ($collection as $order) { + $orderData = [ + 'currency' => $order->getBaseCurrencyCode(), + 'transaction_id' => $order->getIncrementId(), + 'value' => number_format($order->getBaseGrandTotal(), 2), + 'coupon' => strtoupper($order->getCouponCode()), + 'shipping' => number_format($order->getBaseShippingAmount(), 2), + 'tax' => number_format($order->getBaseTaxAmount(), 2), + 'items' => [] + ]; + + /** @var Mage_Sales_Model_Order_Item $item */ + foreach ($order->getAllVisibleItems() as $item) { + $orderData['items'][] = [ + 'item_id' => $item->getSku(), + 'item_name' => $item->getName(), + 'quantity' => $item->getQtyOrdered(), + 'price' => $item->getBasePrice(), + 'discount' => $item->getBaseDiscountAmount() + ]; + } + $result[] = "gtag('event', 'purchase', " . json_encode($orderData, JSON_THROW_ON_ERROR) . ");"; + } + return implode("\n", $result); + } + /** * Render information about specified orders and their items * diff --git a/app/code/core/Mage/Payment/Helper/Data.php b/app/code/core/Mage/Payment/Helper/Data.php index a6f0c585237..b6aecbbad97 100644 --- a/app/code/core/Mage/Payment/Helper/Data.php +++ b/app/code/core/Mage/Payment/Helper/Data.php @@ -38,7 +38,7 @@ public function getMethodInstance($code) $key = self::XML_PATH_PAYMENT_METHODS . '/' . $code . '/model'; $class = Mage::getStoreConfig($key); if (is_null($class)) { - Mage::logException(new Exception(sprintf('Unkown payment method with code "%s"', $code))); + Mage::logException(new Exception(sprintf('Unknown payment method with code "%s"', $code))); return false; } return Mage::getModel($class); diff --git a/app/code/core/Mage/Rule/Model/Action/Abstract.php b/app/code/core/Mage/Rule/Model/Action/Abstract.php index 98fb8eda9e5..d6d95a3f02d 100644 --- a/app/code/core/Mage/Rule/Model/Action/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Action/Abstract.php @@ -36,8 +36,20 @@ */ abstract class Mage_Rule_Model_Action_Abstract extends Varien_Object implements Mage_Rule_Model_Action_Interface { + /** + * Flag to enable translation for loadOperatorOptions/loadValueOptions/loadAggregatorOptions/getDefaultOperatorOptions + * It's useless to translate these data on frontend + * + * @var bool + */ + protected static $translate; + public function __construct() { + if (!is_bool(static::$translate)) { + static::$translate = Mage::app()->getStore()->isAdmin(); + } + parent::__construct(); $this->loadAttributeOptions()->loadOperatorOptions()->loadValueOptions(); @@ -137,8 +149,8 @@ public function getAttributeName() public function loadOperatorOptions() { $this->setOperatorOption([ - '=' => Mage::helper('rule')->__('to'), - '+=' => Mage::helper('rule')->__('by'), + '=' => static::$translate ? Mage::helper('rule')->__('to') : 'to', + '+=' => static::$translate ? Mage::helper('rule')->__('by') : 'by', ]); return $this; } diff --git a/app/code/core/Mage/Rule/Model/Condition/Abstract.php b/app/code/core/Mage/Rule/Model/Condition/Abstract.php index c5adabd9ee4..100a5407d46 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Abstract.php +++ b/app/code/core/Mage/Rule/Model/Condition/Abstract.php @@ -49,6 +49,14 @@ */ abstract class Mage_Rule_Model_Condition_Abstract extends Varien_Object implements Mage_Rule_Model_Condition_Interface { + /** + * Flag to enable translation for loadOperatorOptions/loadValueOptions/loadAggregatorOptions/getDefaultOperatorOptions + * It's useless to translate these data on frontend + * + * @var bool + */ + protected static $translate; + /** * Defines which operators will be available for this condition * @@ -76,6 +84,10 @@ abstract class Mage_Rule_Model_Condition_Abstract extends Varien_Object implemen public function __construct() { + if (!is_bool(static::$translate)) { + static::$translate = Mage::app()->getStore()->isAdmin(); + } + parent::__construct(); $this->loadAttributeOptions()->loadOperatorOptions()->loadValueOptions(); @@ -137,18 +149,18 @@ public function getDefaultOperatorOptions() { if ($this->_defaultOperatorOptions === null) { $this->_defaultOperatorOptions = [ - '==' => Mage::helper('rule')->__('is'), - '!=' => Mage::helper('rule')->__('is not'), - '>=' => Mage::helper('rule')->__('equals or greater than'), - '<=' => Mage::helper('rule')->__('equals or less than'), - '>' => Mage::helper('rule')->__('greater than'), - '<' => Mage::helper('rule')->__('less than'), - '{}' => Mage::helper('rule')->__('contains'), - '!{}' => Mage::helper('rule')->__('does not contain'), - '[]' => Mage::helper('rule')->__('contains'), - '![]' => Mage::helper('rule')->__('does not contain'), - '()' => Mage::helper('rule')->__('is one of'), - '!()' => Mage::helper('rule')->__('is not one of') + '==' => static::$translate ? Mage::helper('rule')->__('is') : 'is', + '!=' => static::$translate ? Mage::helper('rule')->__('is not') : 'is not', + '>=' => static::$translate ? Mage::helper('rule')->__('equals or greater than') : 'equals or greater than', + '<=' => static::$translate ? Mage::helper('rule')->__('equals or less than') : 'equals or less than', + '>' => static::$translate ? Mage::helper('rule')->__('greater than') : 'greater than', + '<' => static::$translate ? Mage::helper('rule')->__('less than') : 'less than', + '{}' => static::$translate ? Mage::helper('rule')->__('contains') : 'contains', + '!{}' => static::$translate ? Mage::helper('rule')->__('does not contain') : 'does not contain', + '[]' => static::$translate ? Mage::helper('rule')->__('contains') : 'contains', + '![]' => static::$translate ? Mage::helper('rule')->__('does not contain') : 'does not contain', + '()' => static::$translate ? Mage::helper('rule')->__('is one of') : 'is one of', + '!()' => static::$translate ? Mage::helper('rule')->__('is not one of') : 'is not one of', ]; } return $this->_defaultOperatorOptions; @@ -803,6 +815,7 @@ protected function _compareValues($validatedValue, $value, $strict = true) if ($strict && is_numeric($validatedValue) && is_numeric($value)) { return $validatedValue == $value; } else { + $validatedValue = $validatedValue ?? ''; $validatePattern = preg_quote($validatedValue, '~'); if ($strict) { $validatePattern = '^' . $validatePattern . '$'; diff --git a/app/code/core/Mage/Rule/Model/Condition/Combine.php b/app/code/core/Mage/Rule/Model/Condition/Combine.php index e4f2f118ac4..4e5807f016f 100644 --- a/app/code/core/Mage/Rule/Model/Condition/Combine.php +++ b/app/code/core/Mage/Rule/Model/Condition/Combine.php @@ -109,8 +109,8 @@ public function __construct() public function loadAggregatorOptions() { $this->setAggregatorOption([ - 'all' => Mage::helper('rule')->__('ALL'), - 'any' => Mage::helper('rule')->__('ANY'), + 'all' => static::$translate ? Mage::helper('rule')->__('ALL') : 'ALL', + 'any' => static::$translate ? Mage::helper('rule')->__('ANY') : 'ANY', ]); return $this; } @@ -161,8 +161,8 @@ public function getAggregatorElement() public function loadValueOptions() { $this->setValueOption([ - 1 => Mage::helper('rule')->__('TRUE'), - 0 => Mage::helper('rule')->__('FALSE'), + 1 => static::$translate ? Mage::helper('rule')->__('TRUE') : 'TRUE', + 0 => static::$translate ? Mage::helper('rule')->__('FALSE') : 'FALSE', ]); return $this; } diff --git a/app/code/core/Mage/Sales/Model/Quote.php b/app/code/core/Mage/Sales/Model/Quote.php index 89f5c17550f..7a98e5b2f1f 100644 --- a/app/code/core/Mage/Sales/Model/Quote.php +++ b/app/code/core/Mage/Sales/Model/Quote.php @@ -2100,7 +2100,7 @@ public function getCouponCode(): string * @param string $couponCode * @return $this */ - public function setCouponCode(string $couponCode) #static with php74 + public function setCouponCode(string $couponCode) { return $this->setData('coupon_code', $couponCode); } diff --git a/app/code/core/Mage/Sales/Model/Quote/Address.php b/app/code/core/Mage/Sales/Model/Quote/Address.php index 40e821d3f88..8c41fd41432 100644 --- a/app/code/core/Mage/Sales/Model/Quote/Address.php +++ b/app/code/core/Mage/Sales/Model/Quote/Address.php @@ -82,7 +82,6 @@ * @method $this setCompany(string $value) * @method string getCountryId() * @method $this setCountryId(string $value) - * @method string getCouponCode() * @method $this setCouponCode(string $value) * @method string getCreatedAt() * @method $this setCreatedAt(string $value) @@ -1335,4 +1334,12 @@ public function getSubtotalWithDiscount() { return $this->getSubtotal() + $this->getDiscountAmount(); } + + /** + * @return string + */ + public function getCouponCode(): string + { + return (string)$this->_getData('coupon_code'); + } } diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php b/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php index 99ba863e0c0..1a64e771f70 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Action/Product.php @@ -37,10 +37,10 @@ public function loadAttributeOptions() public function loadOperatorOptions() { $this->setOperatorOption([ - 'to_fixed' => Mage::helper('salesrule')->__('To Fixed Value'), - 'to_percent' => Mage::helper('salesrule')->__('To Percentage'), - 'by_fixed' => Mage::helper('salesrule')->__('By Fixed value'), - 'by_percent' => Mage::helper('salesrule')->__('By Percentage'), + 'to_fixed' => static::$translate ? Mage::helper('salesrule')->__('To Fixed Value') : 'To Fixed Value', + 'to_percent' => static::$translate ? Mage::helper('salesrule')->__('To Percentage') : 'To Percentage', + 'by_fixed' => static::$translate ? Mage::helper('salesrule')->__('By Fixed value') : 'By Fixed value', + 'by_percent' => static::$translate ? Mage::helper('salesrule')->__('By Percentage') : 'By Percentage', ]); return $this; } diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php index d3e89adb252..6614c4e7ca2 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Found.php @@ -38,8 +38,8 @@ public function __construct() public function loadValueOptions() { $this->setValueOption([ - 1 => Mage::helper('salesrule')->__('FOUND'), - 0 => Mage::helper('salesrule')->__('NOT FOUND') + 1 => static::$translate ? Mage::helper('salesrule')->__('FOUND') : 'FOUND', + 0 => static::$translate ? Mage::helper('salesrule')->__('NOT FOUND') : 'NOT FOUND', ]); return $this; } diff --git a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php index 6abf2cb82bd..4a0d000addd 100644 --- a/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php +++ b/app/code/core/Mage/SalesRule/Model/Rule/Condition/Product/Subselect.php @@ -83,14 +83,14 @@ public function loadValueOptions() public function loadOperatorOptions() { $this->setOperatorOption([ - '==' => Mage::helper('rule')->__('is'), - '!=' => Mage::helper('rule')->__('is not'), - '>=' => Mage::helper('rule')->__('equals or greater than'), - '<=' => Mage::helper('rule')->__('equals or less than'), - '>' => Mage::helper('rule')->__('greater than'), - '<' => Mage::helper('rule')->__('less than'), - '()' => Mage::helper('rule')->__('is one of'), - '!()' => Mage::helper('rule')->__('is not one of'), + '==' => static::$translate ? Mage::helper('rule')->__('is') : 'is', + '!=' => static::$translate ? Mage::helper('rule')->__('is not') : 'is not', + '>=' => static::$translate ? Mage::helper('rule')->__('equals or greater than') : 'equals or greater than', + '<=' => static::$translate ? Mage::helper('rule')->__('equals or less than') : 'equals or less than', + '>' => static::$translate ? Mage::helper('rule')->__('greater than') : 'greater than', + '<' => static::$translate ? Mage::helper('rule')->__('less than') : 'less than', + '()' => static::$translate ? Mage::helper('rule')->__('is one of') : 'is one of', + '!()' => static::$translate ? Mage::helper('rule')->__('is not one of') : 'is not one of', ]); return $this; } diff --git a/app/code/core/Mage/SalesRule/Model/Validator.php b/app/code/core/Mage/SalesRule/Model/Validator.php index 246507a7c6c..8698d0534e2 100644 --- a/app/code/core/Mage/SalesRule/Model/Validator.php +++ b/app/code/core/Mage/SalesRule/Model/Validator.php @@ -179,6 +179,11 @@ protected function _canProcessRule($rule, $address) $rule->setIsValidForAddress($address, false); return false; } + // check coupon expiration + if ($coupon->hasExpirationDate() && ($coupon->getExpirationDate() < Mage::getModel('core/date')->date())) { + $rule->setIsValidForAddress($address, false); + return false; + } // check per customer usage limit $customerId = $address->getQuote()->getCustomerId(); if ($customerId && $coupon->getUsagePerCustomer()) { diff --git a/app/design/adminhtml/default/default/template/widget/tabs.phtml b/app/design/adminhtml/default/default/template/widget/tabs.phtml index a6e0aaf8d0f..69b62131edb 100644 --- a/app/design/adminhtml/default/default/template/widget/tabs.phtml +++ b/app/design/adminhtml/default/default/template/widget/tabs.phtml @@ -26,7 +26,7 @@ canShowTab($_tab)): continue; endif; ?>
  • getTabIsHidden($_tab)): ?> style="display:none"> - + getTabLabel($_tab); ?> diff --git a/app/design/frontend/base/default/template/googleanalytics/ga.phtml b/app/design/frontend/base/default/template/googleanalytics/ga.phtml index e0c433cfef1..117d5d9363f 100644 --- a/app/design/frontend/base/default/template/googleanalytics/ga.phtml +++ b/app/design/frontend/base/default/template/googleanalytics/ga.phtml @@ -26,6 +26,7 @@ $_accountId = $_helper->getAccountId(); function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', ''); + _getOrdersTrackingCodeAnalytics4() ?> isUseUniversalAnalytics()): ?> diff --git a/app/locale/en_US/Mage_Sales.csv b/app/locale/en_US/Mage_Sales.csv index 483ab0089a2..cc08a4749b8 100644 --- a/app/locale/en_US/Mage_Sales.csv +++ b/app/locale/en_US/Mage_Sales.csv @@ -436,7 +436,6 @@ "Order Comment Email Template","Order Comment Email Template" "Order Comment Email Template for Guest","Order Comment Email Template for Guest" "Order Comments","Order Comments" -"Order Credit Memos","Order Credit Memos" "Order Currency:","Order Currency:" "Order Date","Order Date" "Order Date (%s)","Order Date (%s)" @@ -448,8 +447,6 @@ "Order History Info","Order History Info" "Order ID","Order ID" "Order Information","Order Information" -"Order Invoices","Order Invoices" -"Order Shipments","Order Shipments" "Order State","Order State" "Order Status","Order Status" "Order Status Information","Order Status Information" diff --git a/composer.json b/composer.json index 63f30a3c4fc..efaba0b1d80 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "ext-soap": "*", "ext-zlib": "*", "colinmollenhour/cache-backend-redis": "^1.14", - "colinmollenhour/magento-redis-session": "^3.0", + "colinmollenhour/magento-redis-session": "^3.1", "cweagans/composer-patches": "^1.7", "magento-hackathon/magento-composer-installer": "^3.1 || ^2.1 || ^4.0", "pelago/emogrifier": "^7.0", diff --git a/composer.lock b/composer.lock index a792c21e2b1..266028b191c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a65b51d7b5b96774393d7a4dc6d53f95", + "content-hash": "7f7c043dbf19e76df3065091ecf2b217", "packages": [ { "name": "colinmollenhour/cache-backend-redis", @@ -3368,16 +3368,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.10", + "version": "1.10.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "f1e22c9b17a879987f8743d81533250a5fff47f9" + "reference": "8aa62e6ea8b58ffb650e02940e55a788cbc3fe21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/f1e22c9b17a879987f8743d81533250a5fff47f9", - "reference": "f1e22c9b17a879987f8743d81533250a5fff47f9", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/8aa62e6ea8b58ffb650e02940e55a788cbc3fe21", + "reference": "8aa62e6ea8b58ffb650e02940e55a788cbc3fe21", "shasum": "" }, "require": { @@ -3426,7 +3426,7 @@ "type": "tidelift" } ], - "time": "2023-04-01T17:06:15+00:00" + "time": "2023-04-04T19:17:42+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/cron.php b/cron.php index ac675227474..ea96045daba 100644 --- a/cron.php +++ b/cron.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/openmage/docker-compose.yml b/dev/openmage/docker-compose.yml index faf1a97854f..ae61077a864 100644 --- a/dev/openmage/docker-compose.yml +++ b/dev/openmage/docker-compose.yml @@ -61,5 +61,12 @@ services: volumes: - mysql:/var/lib/mysql + redis: + image: redis:6-alpine + command: redis-server --appendonly yes --maxmemory 10m + volumes: + - redis:/data + volumes: mysql: + redis: \ No newline at end of file diff --git a/dev/tests/functional/bootstrap.php b/dev/tests/functional/bootstrap.php index 19094506621..f4ebefc0bf1 100644 --- a/dev/tests/functional/bootstrap.php +++ b/dev/tests/functional/bootstrap.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/isolation.php b/dev/tests/functional/isolation.php index 31cb1750bd4..3855bb86210 100644 --- a/dev/tests/functional/isolation.php +++ b/dev/tests/functional/isolation.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php b/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php index 4db7e43dcfd..ba6faa61841 100644 --- a/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php +++ b/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php b/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php index ae146532898..a6a120d73f6 100644 --- a/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php +++ b/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Driver/Selenium/Driver.php b/dev/tests/functional/lib/Magento/Mtf/Client/Driver/Selenium/Driver.php index a874911063a..c6db003b885 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Driver/Selenium/Driver.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Driver/Selenium/Driver.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php index b5ac34d8369..b86a68e31bf 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php index d73a910963e..a5e8bd21b6a 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php index 21edeb63c19..5fa588f8539 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php index 8525163995b..d8865bf1aee 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php index 5f98fbacd35..36c860b7f8d 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimpleElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimpleElement.php index 9bc41a009a5..0353a361d9a 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimpleElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimpleElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php index e40485ce8e6..b0e470b67e7 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php +++ b/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php b/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php index a7ba1adbd72..102e96d04c2 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php +++ b/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php b/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php index 508a0625b22..f88fbce35dc 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php +++ b/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php index 04d83328e31..ade118d2573 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php +++ b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Page.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Page.php index 2da669108de..e5d1649c522 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Page.php +++ b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Page.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php index c8f821887c3..b1b0e132c73 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php +++ b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php index 266bf7fbee3..c6c1a022ba9 100644 --- a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php +++ b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleInGrid.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleInGrid.php index d18c536e3c8..0f0b22594f7 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleSuccessSaveMessage.php index 776961b98df..9d0cf9e4f5e 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertRoleSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccessDeniedMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccessDeniedMessage.php index 677d3580312..33c8421b676 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccessDeniedMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccessDeniedMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccountInactiveMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccountInactiveMessage.php index 59a0163b875..fcf7a71c771 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccountInactiveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserAccountInactiveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserDuplicateMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserDuplicateMessage.php index 2d6bb15505a..6a29332acbc 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserDuplicateMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserDuplicateMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInGrid.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInGrid.php index d2c9b88b5cb..cf1436b1b89 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInvalidEmailMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInvalidEmailMessage.php index 56873f239f3..5c451629106 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInvalidEmailMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserInvalidEmailMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserIsLockedMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserIsLockedMessage.php index b1db4108c48..1c600891408 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserIsLockedMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserIsLockedMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogOut.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogOut.php index d27a0b47d80..108c79570a9 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogOut.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogOut.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogin.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogin.php index cd98e2689a5..422e25889ab 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogin.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessLogin.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessSaveMessage.php index 92f15cbf0ec..a5ea133afdf 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithCustomRole.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithCustomRole.php index d938c609e40..6d971f02bb0 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithCustomRole.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithCustomRole.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithRestrictedResources.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithRestrictedResources.php index 587089ece06..9cd305a5925 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithRestrictedResources.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWithRestrictedResources.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWrongCredentialsMessage.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWrongCredentialsMessage.php index 4eeb01ccf25..867136d785e 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWrongCredentialsMessage.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Constraint/AssertUserWrongCredentialsMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/GwsStoreGroups.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/GwsStoreGroups.php index d5daebb45c9..8b2483117a4 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/GwsStoreGroups.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/GwsStoreGroups.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/InRoleUsers.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/InRoleUsers.php index f423c2b2bfe..fcac76de1cc 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/InRoleUsers.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/InRoleUsers.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php index 20b53a585b0..fb3b65fac4f 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/User/RoleId.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/User/RoleId.php index 5d542a09e0e..ed12ba028c0 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/User/RoleId.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/User/RoleId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/Curl.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/Curl.php index bc07aa140ab..c0fa24368c1 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/RoleInterface.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/RoleInterface.php index 7357c470ae1..bb85865bff0 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/RoleInterface.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/Role/RoleInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/Curl.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/Curl.php index 5ff0790f376..45521b328d6 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/UserInterface.php b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/UserInterface.php index 48122b3de5b..124cbc46cc9 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/UserInterface.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/Handler/User/UserInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserEntityTest.php b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserEntityTest.php index d10828344b3..01e953f8fc1 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserRoleEntityTest.php b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserRoleEntityTest.php index a937d702418..0986709aaa9 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserRoleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/CreateAdminUserRoleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/UseAclRoleWithRestrictedGwsScopeTest.php b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/UseAclRoleWithRestrictedGwsScopeTest.php index ff2f57f7a6a..1e27fbb2cd2 100644 --- a/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/UseAclRoleWithRestrictedGwsScopeTest.php +++ b/dev/tests/functional/tests/app/Mage/Admin/Test/TestCase/UseAclRoleWithRestrictedGwsScopeTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Admin/Login.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Admin/Login.php index 93c761cdabf..96e7e4ec79a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Admin/Login.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Admin/Login.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role.php index 6bf19be5ac8..bcd4ac4c267 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role/Grid.php index 01090ceb253..42a3f66c479 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/Tab/Role/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/UserForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/UserForm.php index 8cfa174d1a6..e495aa6f30e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/UserForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Api/User/UserForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cache/PageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cache/PageActions.php index b5ea03660d2..83b687509eb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cache/PageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cache/PageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Content.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Content.php index fded7e3213d..065a5204a1b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Content.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Content.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/CategoryForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/CategoryForm.php index 8667e22f385..0af17dcab41 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/CategoryForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/CategoryForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product.php index d9442c09a43..29b6bbe9164 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product/Grid.php index f7929056cfc..0376183aeee 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Edit/Tab/Product/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Tree.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Tree.php index f248b53a730..b2f10afad82 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Tree.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Category/Tree.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/CustomAttribute.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/CustomAttribute.php index 300e10a996a..8d6556536a2 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/CustomAttribute.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/CustomAttribute.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/AttributeForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/AttributeForm.php index 96dd7a4500c..73165968eb7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/AttributeForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/AttributeForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options.php index ddf593873a1..67f20303c8b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options/Option.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options/Option.php index c53da837d0c..0b91d5034ca 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options/Option.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Edit/Tab/Options/Option.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Grid.php index c7ecef094a9..fb3583666eb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Grid.php index 0192d44c7d3..1356b786f48 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main.php index 5b46be25058..1506c4df279 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/AttributeSetForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/AttributeSetForm.php index 3c3e172785d..cccac617b22 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/AttributeSetForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/AttributeSetForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/EditForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/EditForm.php index 1e636973ce9..537fb4f4ae4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/EditForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Attribute/Set/Main/EditForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenant.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenant.php index 0e55944b782..4bdf84caffc 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenant.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenant.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenantProductsGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenantProductsGrid.php index f49e7b90fd5..36af28801b1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenantProductsGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractAppurtenantProductsGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractOptions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractOptions.php index 5d45c8aa505..3cf5484be5e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractOptions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractSelectOptions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractSelectOptions.php index 3c484b6aa80..d5148b8ca46 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractSelectOptions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AbstractSelectOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts.php index b5069f0594d..d2e3fa8314f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Grid.php index 5dd52445528..e32df17fd29 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Product.php index ad16aacabae..1679a9b6ef1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/AssociatedProducts/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Categories.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Categories.php index 7d6682b8f39..d8b6911497a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Categories.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Categories.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable.php index 59e784cc860..d68070120b0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute.php index 287ea69fa66..57c16ef02dd 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute/Option.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute/Option.php index 8530fab8553..6a992699206 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute/Option.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Attribute/Option.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Grid.php index 74dfd217a18..0cc6b3b8a36 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/NewProductPopup.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/NewProductPopup.php index 319977492f1..252da98f9cc 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/NewProductPopup.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/NewProductPopup.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation.php index a6e8512159f..aceb572dd2e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation/AttributesElement.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation/AttributesElement.php index a69bea12b84..02645678313 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation/AttributesElement.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/QuickCreation/AttributesElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/SimpleAssociatedProduct.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/SimpleAssociatedProduct.php index 0822656535b..3c681a6fd6c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/SimpleAssociatedProduct.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Configurable/SimpleAssociatedProduct.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell.php index 6205d8324c2..3a4e19d7c7f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell/Grid.php index 7d90c58c9ee..55b00384502 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Crosssell/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions.php index 86a22a9eb9d..bd7882607d1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Area.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Area.php index 9cd123aed8a..613d5818714 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Area.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Area.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Checkbox.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Checkbox.php index 4a021eacfcf..7d0f33914c0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Checkbox.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Checkbox.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Date.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Date.php index 2209900f172..31473f44eb5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Date.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Date.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DateTime.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DateTime.php index 29e3da5e09f..eb9462f87db 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DateTime.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DateTime.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DropDown.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DropDown.php index 845cc560c0f..329a29e25a9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DropDown.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/DropDown.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Field.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Field.php index d14e607b0c0..a00173d51b8 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Field.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Field.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/File.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/File.php index f60c48cb941..e08a6e5ed7d 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/File.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/File.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/MultipleSelect.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/MultipleSelect.php index 2d559550220..74a3611fde6 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/MultipleSelect.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/MultipleSelect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/RadioButtons.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/RadioButtons.php index e88341ab538..a980f59eee4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/RadioButtons.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/RadioButtons.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Time.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Time.php index 1b3027214e7..45c444ccdca 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Time.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/CustomOptions/Time.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices.php index 764e57d50a5..bdf96fd9493 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionGroup.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionGroup.php index 5940f32d012..f2baf8a65cc 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionGroup.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionGroup.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionTier.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionTier.php index d884728051a..574f072e4ff 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionTier.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Prices/OptionTier.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/ProductSettings.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/ProductSettings.php index 846b65b8d57..142a14fb092 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/ProductSettings.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/ProductSettings.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related.php index a164401a9d5..2c0800dd4a8 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related/Grid.php index 6c29ac3bb33..6c985c705e5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Related/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/SuperSettings.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/SuperSettings.php index cf9462bb94b..b43ab172bdb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/SuperSettings.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/SuperSettings.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell.php index 6e94847441a..288de7ac070 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell/Grid.php index 268c06de209..2593c87150d 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Upsell/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Websites.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Websites.php index 6dc290acbb5..f1a55550fbd 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Websites.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Edit/Tab/Websites.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/FormPageActions.php index f252abaa9d2..e5313d578d3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Grid.php index e6cf5d09c68..4dfc679ed60 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/ProductForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/ProductForm.php index 0886ef51de3..dfec94a0417 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/ProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Catalog/Product/ProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/FormPageActions.php index e74872093a1..aa49d3e4dde 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog.php index 4e25ed772cd..85db11a8c46 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/Form.php index 16b6fa6da98..3cf652d2c05 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/PromoForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/PromoForm.php index 1ed10deaad0..3147a8b5aad 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/PromoForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/Catalog/Edit/PromoForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/GridPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/GridPageActions.php index 15fca6ed324..bf50d8dd3c9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/GridPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogRule/Promo/GridPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Edit/SearchTermForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Edit/SearchTermForm.php index e8b8edc5699..9cd4689d0ca 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Edit/SearchTermForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Edit/SearchTermForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Grid.php index 889d882405d..bef0951c33b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/CatalogSearch/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Edit/Form.php index 7a54f21010e..c25e2a567f5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Grid.php index 8b84d4ce49e..467deb5d68a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Checkout/Agreement/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/CmsGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/CmsGrid.php index fa56f9098e4..0b3cb6f6494 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/CmsGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/CmsGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/BlockForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/BlockForm.php index dc1b3e3aa9c..b95f788429c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/BlockForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/BlockForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/FormPageActions.php index 971a1e312e5..cce157b6a6b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Block/Edit/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/FormPageActions.php index c793050f9a7..84aec5a3122 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/PageForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/PageForm.php index 860d2f7d653..857db77935e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/PageForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/PageForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/Tab/Content.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/Tab/Content.php index 1414fe8e4f4..8cc971133b8 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/Tab/Content.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Edit/Tab/Content.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Grid.php index 85b7b9ebe36..27e494c68c9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Widget/Chooser.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Widget/Chooser.php index d2bde424934..ffe215664e3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Widget/Chooser.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Page/Widget/Chooser.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Wysiwyg/Config.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Wysiwyg/Config.php index 814ac009e4b..a5a99db5eb6 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Wysiwyg/Config.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Cms/Wysiwyg/Config.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/CustomerGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/CustomerGrid.php index 9c50989fd89..7f0f50b5f66 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/CustomerGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/CustomerGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/CustomerForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/CustomerForm.php index b87780ce1cf..70493ebadce 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/CustomerForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/CustomerForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/FormPageActions.php index 156b1d9292b..b7a69ecd061 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/Tab/Addresses.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/Tab/Addresses.php index b2050f4ecf1..d85680be2b0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/Tab/Addresses.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Edit/Tab/Addresses.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Edit/Form.php index c994009f31f..0985fb21d4c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Grid.php index e97afdc3248..77aead02c2f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Customer/Group/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/FormPageActions.php index bdc5234bb04..0d5aec41e21 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/GridPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/GridPageActions.php index dbe9140d3a1..a54e3b979d9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/GridPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/GridPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Newsletter/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Newsletter/Grid.php index f935d56c8ad..ad39b244ab2 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Newsletter/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Newsletter/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Footer.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Footer.php index d036c637b99..fcffbb9cce0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Footer.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Footer.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2020 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Header.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Header.php index d96f3794ad1..65de4efc0bd 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Header.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Header.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Main.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Main.php index cc49c0441b5..c3f9b8d36f9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Main.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Page/Main.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/PageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/PageActions.php index e6bee3d6eb3..8743811fd53 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/PageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/PageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Edit/Tab/RoleResources.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Edit/Tab/RoleResources.php index 90a9b9f909a..d9d6dd1a78f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Edit/Tab/RoleResources.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Edit/Tab/RoleResources.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Grid/RoleGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Grid/RoleGrid.php index 1864c91bec7..1c1ce4bc435 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Grid/RoleGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/Grid/RoleGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/RoleForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/RoleForm.php index db7bdd7f0db..6eb6461292d 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/RoleForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/Role/RoleForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/User/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/User/Grid.php index 9243295c1fa..59dcd03167a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/User/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Permissions/User/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Grid.php index 3ee31d44f71..56994896327 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/FormPageActions.php index e325dc7c090..35e4ff3eef7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/PromoQuoteForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/PromoQuoteForm.php index cdca3c44f84..8a541ead170 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/PromoQuoteForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/PromoQuoteForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/Labels.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/Labels.php index 4d3ade7b73b..8925393faaf 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/Labels.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/Labels.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/RuleInformation.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/RuleInformation.php index 894de53f89c..8af946f5d87 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/RuleInformation.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Promo/Quote/Edit/Tab/RuleInformation.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Rating/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Rating/Grid.php index 8693d931873..d946323e856 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Rating/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Rating/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails.php index d1083d1d61b..35abef20f68 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails/RatingElement.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails/RatingElement.php index da4038d60cf..ab23943cd43 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails/RatingElement.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Edit/ReviewDetails/RatingElement.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Grid.php index 60f448fae71..19ad89512da 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/ReviewForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/ReviewForm.php index 1c8cbb6575e..8651c698e02 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/ReviewForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Review/ReviewForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/AbstractGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/AbstractGrid.php index 640d1e30d6d..c13c8bc51fb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/AbstractGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/AbstractGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/Grid.php index ff145fd22f2..68ab5fd7508 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items.php index abf72cfb706..03939fd95c5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items/Item.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items/Item.php index 2e68a0ab643..40d0b9b1db0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items/Item.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/CreditMemos/View/Items/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Actions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Actions.php index 449a97eb859..fa0fa9aa049 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Actions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Actions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Grid.php index 308fb92ddcb..6049bb19627 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items.php index 8a0206d69ff..f2cda45df4a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items/Item.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items/Item.php index 06809041401..080a6cc80ea 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items/Item.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Invoices/View/Items/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm.php index 299331962fe..70854c43fb4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/Product.php index c8606043d16..19f51723f5f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/ProductForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/ProductForm.php index cfe289a4701..3f9c71e0190 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/ProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractForm/ProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems.php index 3bf40b0e99a..be2e9a6ca46 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems/AbstractItem.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems/AbstractItem.php index 539ceec95bc..6911f088c32 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems/AbstractItem.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItems/AbstractItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItemsNewBlock.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItemsNewBlock.php index 31adbd97fd8..c1b07ec9847 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItemsNewBlock.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/AbstractItemsNewBlock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Actions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Actions.php index e7240a60409..08c190a7203 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Actions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Actions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Address.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Address.php index b8a7e417b5c..3282d845cac 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Address.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Address.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Comments.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Comments.php index 2d30958fb19..e6cce43d9b4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Comments.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Comments.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create.php index 0b3f34d0e4f..703aba5694f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Billing/Address.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Billing/Address.php index 62be418937a..349bff7b279 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Billing/Address.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Billing/Address.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Coupons.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Coupons.php index cff12e28f45..d115ae865eb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Coupons.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Coupons.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities.php index dfe8005b066..54937a1fa9b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar.php index ae4f0e506a5..6fe36682960 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php index c045bfcf134..ca824e301e5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerGrid.php index ff60e96ff77..4c55fea6407 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/CustomerGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items.php index e679ea3d91b..8f520013e12 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items/ItemProduct.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items/ItemProduct.php index 51fc40adf6f..0c0dfb96369 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items/ItemProduct.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Items/ItemProduct.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Payment.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Payment.php index 539c213b32a..ce1f19cccb1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Payment.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Payment.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search.php index 87018f91374..e36afee519c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search/Grid.php index 7d963406a59..39727d1c508 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Search/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Shipping.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Shipping.php index 1aa8f714ab0..f0ea50bfc32 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Shipping.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Shipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Store.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Store.php index 7748b0907a6..d5c6e90f8af 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Store.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Create/Store.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form.php index 09c2aa606d6..ec6f3f82cf8 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items.php index a934175e0f9..c8b50e2bc84 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items/Product.php index 74f64195a02..ea39ea6609a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Form/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Totals.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Totals.php index 83691dad645..c24a337176a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Creditmemo/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Grid.php index d5f682576dc..239e92b6e81 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form.php index 3ce5cf674ff..e7d4da0a8da 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items.php index 5f3abbf9fc8..1a67975fa60 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items/Product.php index b70b21af3f5..ac333c9dc1b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Form/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Totals.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Totals.php index 32a7283fa40..9540b9327da 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Invoice/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form.php index bd10a538bf5..ad5152c9d65 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items.php index 53a2aee18ec..38c1235ad1a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items/Product.php index bc75dbd1148..3a78cc260b7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking.php index cad7bbf5e70..79741d6444a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking/Item.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking/Item.php index 72e78c238e3..0c4ad3abe81 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking/Item.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Shipment/Form/Tracking/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Title.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Title.php index 1d65c54bc47..c361ce87942 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Title.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Title.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Totals.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Totals.php index f0ad5ee17fc..b46371a0a72 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/AbstractGridTab.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/AbstractGridTab.php index d55756d8764..ee07aff8855 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/AbstractGridTab.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/AbstractGridTab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Form.php index cd37036fbbc..6aa8d405da9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items.php index 6f1df3fea3b..4766e420f53 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items/Product.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items/Product.php index eea6e163099..6144ec78227 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/CreditMemos.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/CreditMemos.php index e088406d3d9..2f58521b1e9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/CreditMemos.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/CreditMemos.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Info.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Info.php index 90c31260aa7..14eb42a5adb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Info.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Info.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Invoices.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Invoices.php index 4b5b023ea48..f1a2b733271 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Invoices.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Invoices.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Shipments.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Shipments.php index 8e9697a8472..612c123dcfc 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Shipments.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Shipments.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Transactions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Transactions.php index 36f4b4a03a4..3a9477813e3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Transactions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Order/View/Tab/Transactions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Shipment/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Shipment/Grid.php index 1b54f3164f3..35d61c678d3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Shipment/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Shipment/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Transactions/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Transactions/Grid.php index aeb31d507d6..a86ef5b4e45 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Transactions/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sales/Transactions/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/Grid.php index dbbe50f3973..21c1c7d2505 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items.php index e4201a9dc5f..22113a3f2aa 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items/Item.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items/Item.php index b2d2b1855df..f84bc6c1251 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items/Item.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Shipping/View/Items/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/Form.php index 8b6d4bc8785..f3d9eef1ab9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/FormPageActions.php index f8151ced6e4..f625e3f6ff4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Edit/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Grid.php index cbcb80794ee..66fd23dd698 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Sitemap/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Config/Switcher.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Config/Switcher.php index b9a8a448199..e023a13caaa 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Config/Switcher.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Config/Switcher.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/CurrencyGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/CurrencyGrid.php index dc252005dd2..bde3b4961f1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/CurrencyGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/CurrencyGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/GridPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/GridPageActions.php index 3e7ee088617..11b9e00bd9c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/GridPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Currency/GridPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/CurrencySymbolForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/CurrencySymbolForm.php index 89916618737..1152865025d 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/CurrencySymbolForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/CurrencySymbolForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/FormPageActions.php index dcec2254568..0decf7498bb 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Process/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Process/Grid.php index d87643331bb..4ef4b98e2c1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Process/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Process/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/GroupForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/GroupForm.php index fed8294b1c3..f03e875dbf7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/GroupForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/GroupForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/StoreForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/StoreForm.php index 6ff9f9d78bf..8c22ac70114 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/StoreForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Form/StoreForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Website.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Website.php index 60ada2cad08..9569b94e44d 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Website.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Delete/Website.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/GroupForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/GroupForm.php index 95739d1753c..748ee5d24a4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/GroupForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/GroupForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/StoreForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/StoreForm.php index 7c4c2d7bc2b..0297475ccb0 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/StoreForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/StoreForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/WebsiteForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/WebsiteForm.php index ad09a8413e9..1a8fa20c589 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/WebsiteForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/Edit/Form/WebsiteForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/GridPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/GridPageActions.php index c36b2f0eee0..bd009e7e5c7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/GridPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/GridPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/StoreGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/StoreGrid.php index edd9745bbbc..266c4271391 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/StoreGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/System/Store/StoreGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/Edit/Form.php index 826a7acbf43..2d8b571e79a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/RatesGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/RatesGrid.php index e3dfeb6ccf3..992d2040de6 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/RatesGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rate/RatesGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Edit/Form.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Edit/Form.php index 0fffcb2f4be..2fbcd822705 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Edit/Form.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Edit/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/FormPageActions.php index 7f1b5cfb442..6a1918a1f88 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Grid.php index a22f25ef244..81216f3044b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Tax/Rule/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Template.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Template.php index a852dfda75e..8068874b411 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Template.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Template.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/FormTabs.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/FormTabs.php index 04ce005f671..478e5de95a1 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/FormTabs.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/FormTabs.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Grid.php index 8f3048f8871..9ec9e3e7a58 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Tab.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Tab.php index 2ac463b88ab..e2613436181 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Tab.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Widget/Tab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist.php index 2a152877d9c..9181bef6667 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist/Grid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist/Grid.php index 90cd9d43639..8bdfb967e19 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Block/Wishlist/Customer/Edit/Tab/Wishlist/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertProductIsPresentOnCustomWebsite.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertProductIsPresentOnCustomWebsite.php index 5a256c6938e..df1e36ab94e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertProductIsPresentOnCustomWebsite.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertProductIsPresentOnCustomWebsite.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreBackend.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreBackend.php index 5e264cf81e7..627b73fb298 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreBackend.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreBackend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreForm.php index b0c7b1e11f0..c7611f2f77b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreFrontend.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreFrontend.php index e0e9f3ba59e..38432f6a741 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupForm.php index 1456c8e3fd5..190fec5eea3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInGrid.php index 5303585e793..9b106655330 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInPurchasePointDropdown.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInPurchasePointDropdown.php index 222fcc35c39..b6f0f6e9a31 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInPurchasePointDropdown.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupInPurchasePointDropdown.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupOnStoreViewForm.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupOnStoreViewForm.php index 635cde7d769..c2729b842c5 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupOnStoreViewForm.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupOnStoreViewForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php index a1fca4eb1ca..e7a3e1e72db 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreInGrid.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreInGrid.php index b3d2c9317d9..125a1873c6e 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreLocalized.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreLocalized.php index a778aac3e87..9c65986934b 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreLocalized.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreLocalized.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreNotOnFrontend.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreNotOnFrontend.php index 74ec1bf7ec7..7f63a2c3cb9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreNotOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreNotOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreSuccessSaveMessage.php index e28fe4afbbb..532f77f0a4a 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertStoreSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertVersionCorrect.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertVersionCorrect.php index 0891104b6ce..4e5a5b3e55c 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertVersionCorrect.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Constraint/AssertVersionCorrect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/Store/GroupId.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/Store/GroupId.php index 964a8503414..0c46124b930 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/Store/GroupId.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/Store/GroupId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/CategoryId.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/CategoryId.php index a28b3046cfa..b5dad89e5b4 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/CategoryId.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/CategoryId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/WebsiteId.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/WebsiteId.php index 0c4d7b04426..98617bcbcb8 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/WebsiteId.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Fixture/StoreGroup/WebsiteId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Conditions.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Conditions.php index 9b876330f73..d56867fba2f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Conditions.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Conditions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/Curl.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/Curl.php index 0022b7fdb70..716360d6454 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/CustomConfigDataInterface.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/CustomConfigDataInterface.php index 081d06409cf..4b5ce5f1705 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/CustomConfigDataInterface.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/CustomConfigData/CustomConfigDataInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Extractor.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Extractor.php index e12c25e358e..d772fd44093 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Extractor.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Extractor.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/Curl.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/Curl.php index ae4256159c1..eabdc3603b7 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/StoreInterface.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/StoreInterface.php index 2d065c19bb1..642600a6b00 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/StoreInterface.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Store/StoreInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/Curl.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/Curl.php index 171c68ffa52..9bfa6a41f11 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/StoreGroupInterface.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/StoreGroupInterface.php index 07d1ee53f2c..901e0b6353f 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/StoreGroupInterface.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/StoreGroup/StoreGroupInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Ui/LoginUser.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Ui/LoginUser.php index 083f5ad7adb..aa378c593e3 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Ui/LoginUser.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Ui/LoginUser.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/Curl.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/Curl.php index 388293ff6d8..c0e5fa2e3d2 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/WebsiteInterface.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/WebsiteInterface.php index fb050012bc2..a92152d02c9 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/WebsiteInterface.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/Handler/Website/WebsiteInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php index b1cba469801..87454093bc6 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreGroupEntityTest.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreGroupEntityTest.php index 92e85709f1c..e991823c301 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreGroupEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreGroupEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateWebsiteEntityTest.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateWebsiteEntityTest.php index 6ecf36bfc56..05f8dd3ce75 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateWebsiteEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateWebsiteEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteStoreGroupsStep.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteStoreGroupsStep.php index ac6bdfc71e0..5561d198860 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteStoreGroupsStep.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteStoreGroupsStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteWebsiteStep.php b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteWebsiteStep.php index 7f302d970a3..74f67f68b35 100644 --- a/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteWebsiteStep.php +++ b/dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestStep/DeleteWebsiteStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/Block/Directpost/Form.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/Block/Directpost/Form.php index 84c79affb17..f6c0538c7a5 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/Block/Directpost/Form.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/Block/Directpost/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineInvoiceForAuthorizenetDirectpostMethodTest.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineInvoiceForAuthorizenetDirectpostMethodTest.php index acd7d5bc802..e4e6f122b84 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineInvoiceForAuthorizenetDirectpostMethodTest.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineInvoiceForAuthorizenetDirectpostMethodTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineRefundForAuthorizenetDirectpostMethodTest.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineRefundForAuthorizenetDirectpostMethodTest.php index 338610869fa..7bdd0128dd3 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineRefundForAuthorizenetDirectpostMethodTest.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOfflineRefundForAuthorizenetDirectpostMethodTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOnlineInvoiceForAuthorizenetDirectpostMethodTest.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOnlineInvoiceForAuthorizenetDirectpostMethodTest.php index bbe2f297a58..695c47cf67a 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOnlineInvoiceForAuthorizenetDirectpostMethodTest.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOnlineInvoiceForAuthorizenetDirectpostMethodTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOrderWithAuthorizenetDirectpostMethodTest.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOrderWithAuthorizenetDirectpostMethodTest.php index 311776767e0..81ff6fefc79 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOrderWithAuthorizenetDirectpostMethodTest.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateOrderWithAuthorizenetDirectpostMethodTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateShipmentForAuthorizenetDirectpostMethodTest.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateShipmentForAuthorizenetDirectpostMethodTest.php index f8251220bc9..8b9026d67f3 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateShipmentForAuthorizenetDirectpostMethodTest.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestCase/CreateShipmentForAuthorizenetDirectpostMethodTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestStep/FillCreditCardStep.php b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestStep/FillCreditCardStep.php index 6f8d208ba6b..3f805193d11 100644 --- a/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestStep/FillCreditCardStep.php +++ b/dev/tests/functional/tests/app/Mage/Authorizenet/Test/TestStep/FillCreditCardStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php index 3c77e1e4b1a..64ffe8d4eb6 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php index 81a509b82a4..b6460a9653a 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php index ef814a28c91..9f15c4a8859 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php index 0eb93e82fee..2a819927ca1 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/Price.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/Price.php index 1c7b8e3ac5b..197c77567f4 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/Price.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/Price.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View.php index 546e007fba0..d739bfd9fed 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php index 5dc9228ac56..4cd28b2245b 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option.php index 95fcaf2aeea..f5663039665 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php index ce230b2c752..ce19624c9c6 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php index 8420b158a82..95b37844f2e 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multipleselect.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multipleselect.php index 88e16059cd1..e3cc8a16c4b 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multipleselect.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multipleselect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php index f7235c7240c..33957d5146c 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php index 0b12673970d..33ddf9d8b89 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceType.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceType.php index b31aeb47b25..f76f13258c3 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceType.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceType.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceView.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceView.php index f4f6df0a476..eeb48bf54ac 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceView.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundlePriceView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductForm.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductForm.php index f6a33194f21..636547e23d5 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductPage.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductPage.php index d2edf9302b4..5747e65bbdf 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertBundleProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertProductTierPriceOnBundleProductPage.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertProductTierPriceOnBundleProductPage.php index d275cb127cb..af17ce7081a 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertProductTierPriceOnBundleProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Constraint/AssertProductTierPriceOnBundleProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/BundleProduct/BundleSelections.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/BundleProduct/BundleSelections.php index 65db0195786..8c8b72f24b1 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/BundleProduct/BundleSelections.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/BundleProduct/BundleSelections.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/Cart/Item.php index e94fba232b3..9c7465993e7 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/Cart/Item.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Fixture/Cart/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/BundleProductInterface.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/BundleProductInterface.php index 392502fd404..1361e5ffdf5 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/BundleProductInterface.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/BundleProductInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/Curl.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/Curl.php index 840fa20b1a7..b7bd2243a7b 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/Handler/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateBundleProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateBundleProductEntityTest.php index 87750f533fb..f018fc20f7a 100644 --- a/dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateBundleProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateBundleProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/AbstractConfigureBlock.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/AbstractConfigureBlock.php index 1a91fb4dbe0..a35f573152e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/AbstractConfigureBlock.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/AbstractConfigureBlock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Category/View.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Category/View.php index 205d3eeab33..0b99e47ab35 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Category/View.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Category/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Layer/View.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Layer/View.php index 57329aca909..5f018f5525b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Layer/View.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Layer/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Msrp/Popup.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Msrp/Popup.php index 35afc54e6cc..e16f27c4fdc 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Msrp/Popup.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Msrp/Popup.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/ListCompare.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/ListCompare.php index cf34850b8d8..fadeb3d381f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/ListCompare.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/ListCompare.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/Sidebar.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/Sidebar.php index e775e50123a..4ff12ca957c 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/Sidebar.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Compare/Sidebar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ConfigurableProductView.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ConfigurableProductView.php index 89fed5ad32c..fc1c4801049 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ConfigurableProductView.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ConfigurableProductView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/GroupedProductView.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/GroupedProductView.php index 6cce0fb5641..39a010d36cf 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/GroupedProductView.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/GroupedProductView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ListProduct.php index 5c8a587ff9c..267adb2f713 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ListProduct.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ListProduct.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Price.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Price.php index eb698845c3f..808ed335b81 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Price.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/Price.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/BottomToolbar.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/BottomToolbar.php index 262a7fff1f0..2b282ee1b91 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/BottomToolbar.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/BottomToolbar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Compare.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Compare.php index 87990fa325d..55ce57b24a2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Compare.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Compare.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell.php index e56010e7e50..3efb477024f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell/Item.php index 5a0c6d08c72..bc9d30114a0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Crosssell/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related.php index e56fa0bb5b1..90ca66b303f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related/Item.php index 721b25782a2..f9a602c7fe7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Related/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/TopToolbar.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/TopToolbar.php index 93aaf18181e..d801794a74e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/TopToolbar.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/TopToolbar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell.php index 7449734d9b6..e5bb6a309f0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell/Item.php index d6e06d8c5b8..48ff0458309 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/ProductList/Upsell/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View.php index 8e18c8ef261..9e00bffa5de 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/ConfigurableOptions.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/ConfigurableOptions.php index e483557235a..58cdb42d8c6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/ConfigurableOptions.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/ConfigurableOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/CustomOptions.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/CustomOptions.php index 6fdb06c6904..8cd38ab6190 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/CustomOptions.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/CustomOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedItemForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedItemForm.php index 9a5b747fb09..5eeccb40432 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedItemForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedItemForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedProduct.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedProduct.php index d452f12e6c5..552411fd5e7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedProduct.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Product/View/GroupedProduct.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Search.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Search.php index 7beaf46fb3b..0beea7295af 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Search.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Block/Search.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php index 13ce9891a0f..bda944a4b3b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertProductsVisibleOnCategoryPageShopByFilter.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertProductsVisibleOnCategoryPageShopByFilter.php index 2a9e9036992..4f097f03d65 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertProductsVisibleOnCategoryPageShopByFilter.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AbstractAssertProductsVisibleOnCategoryPageShopByFilter.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php index 4eb67d506c3..e193f14f92b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php index ced43d932ab..9854df895f9 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeForm.php index 3b76b0ab127..ee2faf9e5b0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php index 567456b6d5e..72826456a23 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php index ad925c2fcdb..9ad8f0ccd06 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php index 57b8b60752f..70ffb88a148 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php index 846f7112072..c39ca3bdc01 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForm.php index 671401e8d2b..afd624a3964 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryPage.php index 1b27242ad84..8be5435d0a0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryRedirect.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryRedirect.php index de68a17fb35..2ef1e3ef803 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryRedirect.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategoryRedirect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySaveMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySaveMessage.php index 6a290eec3f8..9469921e26e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php index d1a5e3cd93a..e8c95886c02 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductForm.php index b72eea80af8..9725d41ab3b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductInCart.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductInCart.php index f4e0da5c71e..ed8075347d8 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductInCart.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductInCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductPage.php index aec2e829036..3cee961db59 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertConfigurableProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProducts.php index fb8ee27f648..48bca58abd1 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProductsSection.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProductsSection.php index f171bb87d53..d513401e4b3 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProductsSection.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertCrossSellProductsSection.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedPriceOnGroupedProductPage.php index c038a974f79..28d2f57ce54 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedPriceOnGroupedProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedPriceOnGroupedProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedProductsDefaultQty.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedProductsDefaultQty.php index e8a0ca9919c..70248a2741e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedProductsDefaultQty.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertGroupedProductsDefaultQty.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php index 47d676c59f9..2317974e313 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php index cbcdb347fd5..685c8a4a2f9 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php index 39d2a3d3301..7681e00952a 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentUpSells.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentUpSells.php index df544dcc302..a81c9fd942b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentUpSells.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAbsentUpSells.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php index d6c0822c373..b08ffd0e38a 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeInGrid.php index 3046e187674..203406ae9d9 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php index 95c252c187d..f2aa79a5108 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php index 5a1e4c8d85d..20bd1920ae5 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php index 8b7c3bbecf5..1aeb977f792 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php index 0bcb0b24375..92c232aa777 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php index afe6e910b47..2dab3e02425 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php index 40f2b355019..3bdc8fa774a 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php index 66ee1a8ed71..8f288308274 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeSearchableByLabel.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeSearchableByLabel.php index 0f68679db51..fa6f3860bac 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeSearchableByLabel.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductAttributeSearchableByLabel.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCanNotAddToCart.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCanNotAddToCart.php index 7b4a5da94d5..565a5341492 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCanNotAddToCart.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCanNotAddToCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php index 2ceb4708863..01396714256 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLink.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLink.php index 78c86b2d779..b57c0a14ace 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLink.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLink.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php index 5674a4ba0ec..871b3cccd78 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductComparePage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductComparePage.php index 082da889e83..6738507a1cd 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductComparePage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductComparePage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php index 02e7917c89b..e3d890ca246 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php index 68b126d1047..4367255de25 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCrossSells.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCrossSells.php index 0bd6402abe7..b61cde35450 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCrossSells.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCrossSells.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php index 2ee0e149db6..295afa96d90 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateForm.php index dc1266691ba..fd805af65b6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php index 3a8a900100e..4cce0619f2a 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateMessage.php index 106a63dba11..97c14b08cde 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicateMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php index b17f42d9009..8de33c50d02 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductForm.php index 5dea350db33..98c8a253b64 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductGroupedPriceOnProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductGroupedPriceOnProductPage.php index 0aa8ffed6b5..3857a615c41 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductGroupedPriceOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductGroupedPriceOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCart.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCart.php index c6f3fabb566..c8adf395951 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCart.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCategory.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCategory.php index 3e2774dd7ac..85c44325a82 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCategory.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInCategory.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInGrid.php index 9bbf6a74291..598ebc10ece 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInStock.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInStock.php index a97b1c5c565..8d1358f8be6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInStock.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductInStock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php index 737eb376a79..05a2cd06891 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedBeforeCheckout.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedBeforeCheckout.php index 8f94444b951..00ccabbc3b4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedBeforeCheckout.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedBeforeCheckout.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedInCart.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedInCart.php index bf67625c57c..79de7ceb963 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedInCart.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedInCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedOnGesture.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedOnGesture.php index 5d5464383ce..80c9ca212da 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedOnGesture.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductMapAppliedOnGesture.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotInGrid.php index c4f62f7b4f8..064e33fa033 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php index 16af1fbcf0f..f6bbb7878ab 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStock.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStock.php index ca4b0bd7cd3..8a6cda66f3f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStock.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockOnCategory.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockOnCategory.php index 3a2565682c0..861053308d5 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockOnCategory.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockOnCategory.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockVisibleInCategory.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockVisibleInCategory.php index a0212a63c5e..c9492c855fd 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockVisibleInCategory.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductOutOfStockVisibleInCategory.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductPage.php index 38dffa52b12..526a93a9e7b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductRelatedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductRelatedProducts.php index 1002a73543f..65b9a559ef8 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductRelatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductRelatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSaveMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSaveMessage.php index cac4a7c9bb6..f8744b2b06b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSearchable.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSearchable.php index f139a9e7b84..68fe69eb5f6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSearchable.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSearchable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceNotLargerActual.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceNotLargerActual.php index b138f1dcc67..6ab5fcd0b13 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceNotLargerActual.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceNotLargerActual.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php index a4dfefafadf..d87ecfa3479 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateForm.php index 94596d0ea57..8ff25a86561 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateInGrid.php index 888ec337874..06363da3916 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateOnProductForm.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateOnProductForm.php index cb4e882f97e..17d308fe6a1 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateOnProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateOnProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateSuccessSaveMessage.php index 747fddd386a..df99f0f8346 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTemplateSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php index db5afebb6e5..b0c71ef7272 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductVisibleInCategory.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductVisibleInCategory.php index b35329da5bb..27bf13475d4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductVisibleInCategory.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductVisibleInCategory.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsIsNotDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsIsNotDisplayingOnFrontend.php index 017d3cbe1af..648cc0c53f1 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsIsNotDisplayingOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsIsNotDisplayingOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotInGrid.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotInGrid.php index 24ad7fb19e7..4fa6be4e40f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotVisibleInCategory.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotVisibleInCategory.php index 659deb10ba5..9a37a48b52b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotVisibleInCategory.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsNotVisibleInCategory.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsSuccessDeleteMessage.php index a106c2d3cde..bca470fec53 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsSuccessDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsSuccessDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByAttribute.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByAttribute.php index 696f3b8c02a..95faac3f38d 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByAttribute.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByAttribute.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByPrice.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByPrice.php index 0e5f62513c6..fe7ad5524be 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByPrice.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertProductsVisibleOnCategoryPageShopByPrice.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProducts.php index a606061be5a..db275227e04 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProductsSection.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProductsSection.php index 3df64311197..92a328a9e89 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProductsSection.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertRelatedProductsSection.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php index d202ca7efbd..f67d53f3ca0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertTierPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertTierPriceOnGroupedProductPage.php index a8ded99e3fd..4837af8b5e2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertTierPriceOnGroupedProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertTierPriceOnGroupedProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProducts.php index f2b15065774..403702dbf63 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProductsSection.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProductsSection.php index abe702e3162..7dd316535e5 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProductsSection.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/AssertUpSellProductsSection.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductConfigurableHandler.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductConfigurableHandler.php index c067b2b98a0..e24ff583f8c 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductConfigurableHandler.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductConfigurableHandler.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductHandler.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductHandler.php index 14cf066759b..fb57e0a5ff0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductHandler.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Constraint/ProductHandler.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/Cart/Item.php index 3997bc034e1..629661e09c9 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/Cart/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/Cart/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php index 8da339b22b6..ff6f6c45c07 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php index 6fffc56779b..090ec2a63f7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/CategoryProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/CategoryProducts.php index 54aac61d9b4..791f61c4764 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/CategoryProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/CategoryProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/ParentId.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/ParentId.php index 1f4833d6950..4aa0dcde94e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/ParentId.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogCategory/ParentId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductAttribute/Options.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductAttribute/Options.php index 4cc27da0927..cecc27d7275 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductAttribute/Options.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductAttribute/Options.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AbstractRelatedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AbstractRelatedProducts.php index f8b0ebe5ced..be5242a06af 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AbstractRelatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AbstractRelatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AttributeSetId.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AttributeSetId.php index 7b4eb40c389..0f8c0067220 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AttributeSetId.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/AttributeSetId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Attributes.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Attributes.php index f9603489a95..9f997c0143b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Attributes.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Attributes.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CategoryIds.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CategoryIds.php index f6ba30fb086..5bb582de9c8 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CategoryIds.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CategoryIds.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CrossSellProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CrossSellProducts.php index 550a48f2be2..a299092d0ec 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CrossSellProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CrossSellProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CustomOptions.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CustomOptions.php index 187923a7d5e..b6632cae0ea 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CustomOptions.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/CustomOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Fpt.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Fpt.php index fa8b8a62efc..04c7a4bc125 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Fpt.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Fpt.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Price.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Price.php index b2648ff7c81..c7d81d645e0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Price.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/Price.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/RelatedProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/RelatedProducts.php index 639b6979458..f9636095b21 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/RelatedProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/RelatedProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/TaxClass.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/TaxClass.php index e9e797d953d..a299a6f1647 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/TaxClass.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/TaxClass.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/UpSellProducts.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/UpSellProducts.php index 6571800148a..2cc9fc8336e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/UpSellProducts.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/UpSellProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/WebsiteIds.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/WebsiteIds.php index ac0918e93f8..cb3db5493d2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/WebsiteIds.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/CatalogProductSimple/WebsiteIds.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/Cart/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/Cart/Item.php index 02881331a56..c2063a747d7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/Cart/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/Cart/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/ConfigurableOptions.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/ConfigurableOptions.php index 498e945a539..226022fead7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/ConfigurableOptions.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/ConfigurableProduct/ConfigurableOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Associated.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Associated.php index 9c4082cab7a..184837914d9 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Associated.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Associated.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Cart/Item.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Cart/Item.php index b0708677b54..d6395d8cb69 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Cart/Item.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Fixture/GroupedProduct/Cart/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php index eb9f21d0870..027c5421d14 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/Curl.php index d412d2f9d0a..4ba8a545532 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogAttributeSet/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/CatalogCategoryInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/CatalogCategoryInterface.php index fda0de553de..d598491f6c4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/CatalogCategoryInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/CatalogCategoryInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/Curl.php index ed190ed34b8..f251c38bdf0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogCategory/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php index e3dd39a8c42..232e7140f95 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/Curl.php index 89f1cb25f80..be8614e515e 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductAttribute/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php index e752c8449cb..73fa0d27f03 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/Curl.php index aca4fbeb6e7..b2c10967da2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductSimple/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php index c10dea6004c..cf1624039cd 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/Curl.php index bcd38c84cc3..e921dd1f09b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/CatalogProductVirtual/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php index b5c7a60a9ac..2c5c0ab8ca4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/Curl.php index c82dec26c6e..68b57c6d620 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/ConfigurableProduct/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/Curl.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/Curl.php index 3ed0b385714..3a0fd76363d 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/GroupedProductInterface.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/GroupedProductInterface.php index 9cf4d03fff7..231d1cc4ab4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/GroupedProductInterface.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/Handler/GroupedProduct/GroupedProductInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php index fd0f0455be3..fb6190794a3 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php index fc8a974ca29..6c48bf09b04 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php index 3b7f5635d48..64e1af1a2a7 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Layer/FilterProductListTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Layer/FilterProductListTest.php index 1d43a02e4b0..f5f3182c770 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Layer/FilterProductListTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Layer/FilterProductListTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractAddAppurtenantProductsEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractAddAppurtenantProductsEntityTest.php index 5fe6c08a39b..5cb81fe535c 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractAddAppurtenantProductsEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractAddAppurtenantProductsEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractProductsCompareTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractProductsCompareTest.php index 27e58800d2e..98ccb2cda3b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractProductsCompareTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractProductsCompareTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractPromoteAppurtenantProductsEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractPromoteAppurtenantProductsEntityTest.php index bc081cfdde7..b20a091dc88 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractPromoteAppurtenantProductsEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AbstractPromoteAppurtenantProductsEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddCrossSellProductsEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddCrossSellProductsEntityTest.php index e78bee8d416..6fd3aa7aad0 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddCrossSellProductsEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddCrossSellProductsEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddProductsToCompareTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddProductsToCompareTest.php index 71b85985741..927fceb7a1c 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddProductsToCompareTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddProductsToCompareTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddRelatedProductsEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddRelatedProductsEntityTest.php index db29c3c86cb..00e0fba089b 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddRelatedProductsEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddRelatedProductsEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddUpSellProductsEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddUpSellProductsEntityTest.php index f7d148268dd..1849ccfb734 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddUpSellProductsEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/AddUpSellProductsEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ApplyMapTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ApplyMapTest.php index 4a775a85a06..0f598915dc3 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ApplyMapTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ApplyMapTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php index 7e4ebc20c51..bee1af4792c 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateConfigurableProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateConfigurableProductEntityTest.php index a2ecc6ea5c7..1a16aa0f641 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateConfigurableProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateConfigurableProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateGroupedProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateGroupedProductEntityTest.php index 62606347897..f4292896482 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateGroupedProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateGroupedProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php index c910d085341..71129b54a59 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php index e79a0e968d6..26dd4a788fd 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php index d2fbd92ddf8..97c09285b71 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php index bf396ac9859..c2b48f2f97f 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsCrossSellsTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsCrossSellsTest.php index 37efd2bed21..4b887e23844 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsCrossSellsTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsCrossSellsTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsRelatedTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsRelatedTest.php index 0b1ee7853c2..6538786a1af 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsRelatedTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsRelatedTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsUpSellsTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsUpSellsTest.php index ddf2f2d3e7e..ec227f12786 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsUpSellsTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/PromoteProductsAsUpSellsTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateConfigurableProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateConfigurableProductEntityTest.php index 829a2b6ad7c..6b674b0c28a 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateConfigurableProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateConfigurableProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php index 99e009a88f7..2080d6f83c3 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php index 49c0270a957..3fc6dd82ce6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php index ac78d6a1c27..ab6ba1df2e2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductAttributeStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductAttributeStep.php index 0ba30acc17e..e98795710f2 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductAttributeStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductAttributeStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductStep.php index 794fa83f583..7f89ac755bb 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductTemplateStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductTemplateStep.php index 2963dbf84fe..ab94242da83 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductTemplateStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductTemplateStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductsStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductsStep.php index 738d1c68e6e..e7dc0c7f413 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductsStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/CreateProductsStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/OpenProductOnBackendStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/OpenProductOnBackendStep.php index 7c84b3270b7..dcd1875c8d6 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/OpenProductOnBackendStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/OpenProductOnBackendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/SaveProductStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/SaveProductStep.php index fe3c2398750..e7bfe4a6d48 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/SaveProductStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/SaveProductStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep.php index 3dc2a8e9f1a..57ab3d375f3 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AbstractSubStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AbstractSubStep.php index 8380e2d0011..63e862f2000 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AbstractSubStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AbstractSubStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AddOptionsSubStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AddOptionsSubStep.php index 638cea0bd33..77575191813 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AddOptionsSubStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/AddOptionsSubStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/CreateProductSubStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/CreateProductSubStep.php index fb37e97d08d..de3fc94c6a4 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/CreateProductSubStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/CreateProductSubStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/DeleteOptionsSubStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/DeleteOptionsSubStep.php index 81b96c3cfc3..bc850089e73 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/DeleteOptionsSubStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/DeleteOptionsSubStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/UpdateOptionsSubStep.php b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/UpdateOptionsSubStep.php index 24305e4df24..9bcdef537ac 100644 --- a/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/UpdateOptionsSubStep.php +++ b/dev/tests/functional/tests/app/Mage/Catalog/Test/TestStep/UpdateConfigurableProductStep/UpdateOptionsSubStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInCatalogPage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInCatalogPage.php index c4bc82ccbef..b5a28bf9c08 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInCatalogPage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInCatalogPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInProductPage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInProductPage.php index 99bccbb747e..6ebafed31ab 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInProductPage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInShoppingCart.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInShoppingCart.php index 9b48dc52e12..66e6b7d4f7a 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php index 122a30da6e4..016b022c0e7 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php index 04cda79758b..8faebc087e3 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php index 6a807630aa6..e95f799befc 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInProductPage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInProductPage.php index edbceb99d1a..85e958da194 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInProductPage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php index 5334a0d2f02..2ee26776eea 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php index 0a929d49871..01a02ff6980 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php index 1288d241a6f..d2b76592815 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php index 68dbc765286..6ecd6ec28e1 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/Curl.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/Curl.php index fe84550d57c..2f2f8be3893 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/Curl.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/Handler/CatalogRule/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php index 8484c93ea2b..d5291fb2296 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/ApplySeveralCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/ApplySeveralCatalogPriceRuleEntityTest.php index 9d854f35a42..6d087754be7 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/ApplySeveralCatalogPriceRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/ApplySeveralCatalogPriceRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php index a4eb850a09d..8a0e7ea636c 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php index a8b9ad924b7..86b55b9c987 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php index 5e9bba6a3f8..1676c8771a7 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php index 94571399ffc..27065e1efe7 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/SaveAndApplyCatalogRuleStep.php b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/SaveAndApplyCatalogRuleStep.php index f615603cbc4..ebcc8b8a460 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/SaveAndApplyCatalogRuleStep.php +++ b/dev/tests/functional/tests/app/Mage/CatalogRule/Test/TestStep/SaveAndApplyCatalogRuleStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Block/Advanced/Form.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Block/Advanced/Form.php index cbfdd420fb9..3880a459c99 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Block/Advanced/Form.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Block/Advanced/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermForm.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermForm.php index 6aa1f702945..ca32b50a4de 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermForm.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php index db85df11560..24f61e79111 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php index 5fd6a24dfa3..d4610ab4929 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php index ad0f5ef71f2..cddf5cf95f8 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSynonymOnFrontend.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSynonymOnFrontend.php index ebe83f76137..b0be5a5e5aa 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSynonymOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSearchTermSynonymOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php index 07394df2176..2954ee1d862 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php index d5cac3b55c8..526d2112913 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php index f3658313cb5..c603d191de0 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php index db66eef0a32..fff4cba52e6 100644 --- a/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/AbstractItem.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/AbstractItem.php index d66a6c3210a..edf616ac870 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/AbstractItem.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/AbstractItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart.php index 581d109282f..107eeae296f 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/CartItem.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/CartItem.php index 16410214be6..cfd9111e9cb 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/CartItem.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/CartItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/DiscountCodes.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/DiscountCodes.php index bc72d6c533b..5e27effdfde 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/DiscountCodes.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/DiscountCodes.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Shipping.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Shipping.php index 9f5d1fb5842..bd956626f11 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Shipping.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Shipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar.php index ed730e8cad5..e28b9427328 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar/CartItem.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar/CartItem.php index ab57c494558..5a94a7c1d67 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar/CartItem.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Sidebar/CartItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Totals.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Totals.php index 28296aa3ed6..eac348a80f5 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Cart/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart.php index 1bac4a16813..e8db877e4cd 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart/CartItem.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart/CartItem.php index 2acea64dc1a..5ffccdf17bc 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart/CartItem.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/GroupedProductCart/CartItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping.php index a0ba152e0db..04a7233464a 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping/AbstractItems.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping/AbstractItems.php index cd4a0bf9f93..0a414f98f76 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping/AbstractItems.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/AbstractMultishipping/AbstractItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses.php index b5cf21707a7..ef291a4b585 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items.php index a38ea4e1525..3ad8c08b3bc 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items/Item.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items/Item.php index 362b8330758..73f3dc5b21e 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items/Item.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Addresses/Items/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Billing.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Billing.php index 8dc84d4f27b..45be5d670f5 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Billing.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Billing.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Overview.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Overview.php index d45a78ea00c..8a440544f0e 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Overview.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Overview.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Register.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Register.php index 025c622dd8f..5290c2bb0e5 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Register.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Register.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping.php index bace8124101..33623610f16 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items.php index 9c564090622..b6b6be808b0 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items/Item.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items/Item.php index dc6139f68fa..5b9c117ccc1 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items/Item.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Shipping/Items/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Success.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Success.php index 5b03002269e..a7808a0057c 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Success.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Multishipping/Success.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/AbstractOnepage.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/AbstractOnepage.php index 6132ce683f8..8d99e238ff4 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/AbstractOnepage.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/AbstractOnepage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Billing.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Billing.php index b5ef1104603..e039a8ec024 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Billing.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Billing.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Link.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Link.php index c40a9ae12b2..f1e081d0c09 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Link.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Link.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Login.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Login.php index e6a822d559f..c5d58723603 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Login.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Login.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Payment/Methods.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Payment/Methods.php index c6e054c2a6f..e82e85fba2b 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Payment/Methods.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Payment/Methods.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review.php index 24585d3564c..eed81dc5a66 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items.php index ae46c3eb9e6..5aa0cf375da 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items/Product.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items/Product.php index 529d662883d..29c897d0cfb 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Totals.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Totals.php index 6409dfd1b17..00ba998d663 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Review/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Shipping/Method.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Shipping/Method.php index 8d2595484a5..0b8eebe2fa8 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Shipping/Method.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Shipping/Method.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Success.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Success.php index 44256316d68..cb11a7aa388 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Success.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Block/Onepage/Success.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AbstractAssertProductInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AbstractAssertProductInShoppingCart.php index 9934011f755..7872bee5f7b 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AbstractAssertProductInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AbstractAssertProductInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertAbstractOrderAddressSameAsPaypal.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertAbstractOrderAddressSameAsPaypal.php index b4e771723d8..a0e6828490d 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertAbstractOrderAddressSameAsPaypal.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertAbstractOrderAddressSameAsPaypal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartIsEmpty.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartIsEmpty.php index 311eb9b5c43..becd423ead0 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartIsEmpty.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartIsEmpty.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartItemsOptions.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartItemsOptions.php index 65f0e584a66..2f3e3d35914 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartItemsOptions.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertCartItemsOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php index 3ad670cd52e..b533e979f6c 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderBillingAddressSameAsPaypalShipping.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderBillingAddressSameAsPaypalShipping.php index 92d7183b9e1..1affc8bcbc5 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderBillingAddressSameAsPaypalShipping.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderBillingAddressSameAsPaypalShipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderShippingAddressSameAsPaypalBilling.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderShippingAddressSameAsPaypalBilling.php index 04ed7890dd8..b94c362432d 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderShippingAddressSameAsPaypalBilling.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderShippingAddressSameAsPaypalBilling.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php index bc32b248bb2..b28e5223c28 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderWithMultishippingSuccessPlacedMessage.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderWithMultishippingSuccessPlacedMessage.php index 76dc644119e..5b1685c64e4 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderWithMultishippingSuccessPlacedMessage.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertOrderWithMultishippingSuccessPlacedMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertPriceInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertPriceInShoppingCart.php index c33ac91c734..9e8dfae3bca 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertPriceInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertPriceInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductIsNotEditable.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductIsNotEditable.php index 139506e634e..22ff7c1da13 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductIsNotEditable.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductIsNotEditable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInMiniShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInMiniShoppingCart.php index ae9c7ef5f82..271affe923a 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInMiniShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInMiniShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php index 99a8eddd263..3b68069355e 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductsPresentInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductsPresentInShoppingCart.php index 1d654ff4d6d..18644875ec9 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductsPresentInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertProductsPresentInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php index cea48f80aba..abdb4c3cab7 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermInGrid.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermInGrid.php index e9dc70fc257..c055f178db6 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermOnCheckout.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermOnCheckout.php index 4c4e4e9ef45..ce1f6977356 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermOnCheckout.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermOnCheckout.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php index 88126526888..d6986fe5951 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermSuccessSaveMessage.php index c67a2417a52..e55ed88ed1c 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Constraint/AssertTermSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php index 02785554fc3..39286ee4b01 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/CheckoutAgreement/Stores.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/CheckoutAgreement/Stores.php index 7f14d79e895..892e73a6d4b 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/CheckoutAgreement/Stores.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/CheckoutAgreement/Stores.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php index 0910ae47600..c577078e334 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CheckoutWithMultishippingTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CheckoutWithMultishippingTest.php index 6403796cb5b..23f8c6cae52 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CheckoutWithMultishippingTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CheckoutWithMultishippingTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CreateTermEntityTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CreateTermEntityTest.php index a76f79c4d4b..f2fb26184e3 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CreateTermEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/CreateTermEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php index 418df175acd..8124fee70cc 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutTest.php index ddd9f362241..be99fdd8d94 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinDhlShippingMethod.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinDhlShippingMethod.php index 80b56c7e201..a9633b9b4a2 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinDhlShippingMethod.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinDhlShippingMethod.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinOnlineShippingMethods.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinOnlineShippingMethods.php index 8cf8f4a01ad..6bc87b86862 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinOnlineShippingMethods.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/OnePageCheckoutWithinOnlineShippingMethods.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/UpdateShoppingCartTest.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/UpdateShoppingCartTest.php index c0daaeaa8e0..200f4a5f1fc 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/UpdateShoppingCartTest.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestCase/UpdateShoppingCartTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddNewCheckoutAgreementStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddNewCheckoutAgreementStep.php index 7fc9866f780..e1e70c76815 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddNewCheckoutAgreementStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddNewCheckoutAgreementStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddProductsToTheCartStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddProductsToTheCartStep.php index 737759dd105..c2d34ec3d67 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddProductsToTheCartStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/AddProductsToTheCartStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/CreateCartItemStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/CreateCartItemStep.php index b6328bf4f60..31c0d5dc377 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/CreateCartItemStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/CreateCartItemStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/DeleteAllTermsEntityStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/DeleteAllTermsEntityStep.php index 33100300767..ac4adb5aa6c 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/DeleteAllTermsEntityStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/DeleteAllTermsEntityStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/EnterNewAddressesStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/EnterNewAddressesStep.php index c1daa127b59..d0db4236460 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/EnterNewAddressesStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/EnterNewAddressesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillAndSaveCheckoutAgreementStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillAndSaveCheckoutAgreementStep.php index ddacea5277b..7b2af648c3d 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillAndSaveCheckoutAgreementStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillAndSaveCheckoutAgreementStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillBillingInformationStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillBillingInformationStep.php index efb3fff84b1..d322343f282 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillBillingInformationStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillBillingInformationStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodStep.php index 121843115c1..a2150f9850d 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodWithMultishippingStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodWithMultishippingStep.php index e1579b86f29..1358f8aade3 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodWithMultishippingStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/FillShippingMethodWithMultishippingStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderStep.php index 1a32fcf0ae8..fe63771628c 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderWithMultishippingStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderWithMultishippingStep.php index eca448063ea..345c00961e1 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderWithMultishippingStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/PlaceOrderWithMultishippingStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutStep.php index 3b7e543aaf4..9915ecd3b67 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutWithMultishippingStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutWithMultishippingStep.php index d6f715dbe88..b727493eb3a 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutWithMultishippingStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/ProceedToCheckoutWithMultishippingStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectAddressesStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectAddressesStep.php index 9587747990b..e28696bd394 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectAddressesStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectAddressesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodStep.php index 481114fe4b1..b35e6667a69 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodWithMultishippingStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodWithMultishippingStep.php index 76599d0252a..456963c8880 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodWithMultishippingStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectCheckoutMethodWithMultishippingStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodStep.php index 5b48a43895e..65b5f5847a4 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodWithMultishippingStep.php b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodWithMultishippingStep.php index 97c7c742748..a84ad7d276e 100644 --- a/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodWithMultishippingStep.php +++ b/dev/tests/functional/tests/app/Mage/Checkout/Test/TestStep/SelectPaymentMethodWithMultishippingStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Block/Page.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Block/Page.php index bef62fbf9cc..bed0ad30534 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Block/Page.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Block/Page.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockInGrid.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockInGrid.php index f67445178e9..4a5b0858248 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php index eb43c0b140a..4a72c6f6f81 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php index 7fb0ba4d2c9..d75908bd6f7 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php index ec66c20929d..720aef5a429 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php index 4fdd19d4ceb..d254d41531d 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php index 591a2162bb4..242fbfeb0a9 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnUnassignedStoreView.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnUnassignedStoreView.php index 305710d4614..8330404f9f1 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnUnassignedStoreView.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageDisabledOnUnassignedStoreView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageForm.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageForm.php index 88a6c5c57c1..d104e9b0194 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageForm.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageInGrid.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageInGrid.php index d875ed5ccab..74c69007a2d 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageNotInGrid.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageNotInGrid.php index aa01d7df175..e184975e474 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageNotInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageNotInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPagePreview.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPagePreview.php index 60b75bb57bd..acbb72560cb 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPagePreview.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPagePreview.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php index 8301f94aeb1..e61d622798a 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsBlock/Stores.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsBlock/Stores.php index 3b03a966d23..b236621bf7f 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsBlock/Stores.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsBlock/Stores.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/Content.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/Content.php index b04f8560ee7..a67e916aa2d 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/Content.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/Content.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/StoreId.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/StoreId.php index e699cb81b19..f2072521351 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/StoreId.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Fixture/CmsPage/StoreId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/CmsPageInterface.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/CmsPageInterface.php index 171e8256c5b..49ed430753c 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/CmsPageInterface.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/CmsPageInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/Curl.php b/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/Curl.php index f7c4380e2a8..8ced1dc3460 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/Handler/CmsPage/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsBlockEntityTest.php b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsBlockEntityTest.php index 6edeb3dc277..e3cdcb28746 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsBlockEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsBlockEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsPageEntityTest.php b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsPageEntityTest.php index a44024876c0..310727dcd1c 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsPageEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/CreateCmsPageEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/DeleteCmsPageEntityTest.php b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/DeleteCmsPageEntityTest.php index 34cd3cda615..4db75c6395a 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/DeleteCmsPageEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/DeleteCmsPageEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/UpdateCmsPageEntityTest.php b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/UpdateCmsPageEntityTest.php index c4b94fca41a..e810fc17b6a 100644 --- a/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/UpdateCmsPageEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Cms/Test/TestCase/UpdateCmsPageEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Core/Test/Block/Messages.php b/dev/tests/functional/tests/app/Mage/Core/Test/Block/Messages.php index 48f02c5fe8d..637849d21b3 100644 --- a/dev/tests/functional/tests/app/Mage/Core/Test/Block/Messages.php +++ b/dev/tests/functional/tests/app/Mage/Core/Test/Block/Messages.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Core/Test/Fixture/Date.php b/dev/tests/functional/tests/app/Mage/Core/Test/Fixture/Date.php index 40a89a9eb44..4b6400d7f07 100644 --- a/dev/tests/functional/tests/app/Mage/Core/Test/Fixture/Date.php +++ b/dev/tests/functional/tests/app/Mage/Core/Test/Fixture/Date.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/ConfigDataInterface.php b/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/ConfigDataInterface.php index 83400bd9d48..6d4d267b87e 100644 --- a/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/ConfigDataInterface.php +++ b/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/ConfigDataInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/Curl.php b/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/Curl.php index 633847fc378..c1d68def2d7 100644 --- a/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Core/Test/Handler/ConfigData/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Core/Test/TestStep/SetupConfigurationStep.php b/dev/tests/functional/tests/app/Mage/Core/Test/TestStep/SetupConfigurationStep.php index 4339692ef33..364dc53a012 100644 --- a/dev/tests/functional/tests/app/Mage/Core/Test/TestStep/SetupConfigurationStep.php +++ b/dev/tests/functional/tests/app/Mage/Core/Test/TestStep/SetupConfigurationStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php index 8139b86b933..08e8271b5e3 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php index 3acf96aa6f0..c5015f4a47a 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php index 86d2a2ddd9b..9296d14f619 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php index 2803743b3d2..4a0719d1aaf 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ApplyCurrencyInConfigStep.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ApplyCurrencyInConfigStep.php index 9c4253bcd99..2ba8b2421a4 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ApplyCurrencyInConfigStep.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ApplyCurrencyInConfigStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ImportCurrencyRatesStep.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ImportCurrencyRatesStep.php index e6358a00b1e..f406d54b278 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ImportCurrencyRatesStep.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/ImportCurrencyRatesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/SetupCurrencyRatesStep.php b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/SetupCurrencyRatesStep.php index f124f728cb1..8d03d1d6a04 100644 --- a/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/SetupCurrencyRatesStep.php +++ b/dev/tests/functional/tests/app/Mage/CurrencySymbol/Test/TestStep/SetupCurrencyRatesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/AdditionalAddress.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/AdditionalAddress.php index 497e2b3de18..84d81ad2f8e 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/AdditionalAddress.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/AdditionalAddress.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/Book.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/Book.php index ac861678d4a..79b562c2d09 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/Book.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Address/Book.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Dashboard/Info.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Dashboard/Info.php index f76e486d00f..0b7cd1c1414 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Dashboard/Info.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Dashboard/Info.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Navigation.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Navigation.php index 747f7b75e9c..f602e9b7840 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Navigation.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Account/Navigation.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Edit.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Edit.php index 94e7fafc035..c54847524a3 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Edit.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Edit.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Renderer.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Renderer.php index d59e83cd30a..af85438a8e8 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Renderer.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Address/Renderer.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/CustomerForm.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/CustomerForm.php index 645d1918b0b..014122209b2 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/CustomerForm.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/CustomerForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Login.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Login.php index 601d74bf553..46337b30839 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Login.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Login.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Register.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Register.php index 8e9c48f0108..696d1bb7923 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Register.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Block/Form/Register.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedBackend.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedBackend.php index 6013d5c58ea..23da5aabc6d 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedBackend.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedBackend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedFrontend.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedFrontend.php index 6cdd8f9fe6e..87f284c7e2c 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertAddressDeletedFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertChangePasswordFailMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertChangePasswordFailMessage.php index 8a30e490eca..7c956990a71 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertChangePasswordFailMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertChangePasswordFailMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php index a80ea22207f..d01163d82e4 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerForm.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerForm.php index 86230be8a80..21afdda984e 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerForm.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php index fb4b75c54ef..b792dad5438 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupInGrid.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupInGrid.php index 69ccf52bacd..5fcb79f7da4 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php index 5ed25124090..8fcd21875cd 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php index ddf09c5ef1b..7a6908457e9 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInGrid.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInGrid.php index a17d6a3a89d..472497d733c 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php index 65c4049c354..ab26708e6a6 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInvalidEmail.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInvalidEmail.php index 6b4acc31b9f..011f0d0cef5 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInvalidEmail.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerInvalidEmail.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerPasswordChanged.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerPasswordChanged.php index 2d99fb5e605..8f23a569606 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerPasswordChanged.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerPasswordChanged.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php index 466c888456f..9d5b55aae48 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php index 2cd21590608..f1a8c70d32d 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php index 407bd089f29..1134d828b10 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/FrontendActionsForCustomer.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/FrontendActionsForCustomer.php index 8c895c01b3f..13d8910e98a 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/FrontendActionsForCustomer.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Constraint/FrontendActionsForCustomer.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/Address.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/Address.php index c0cf8f35765..677984cfa29 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/Address.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/Address.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/GroupId.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/GroupId.php index ac14c7cbf10..7defe59816e 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/GroupId.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/Customer/GroupId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php index 4bb8824cae5..7cc33db9641 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/Curl.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/Curl.php index 0ea9dc460a8..84112544e81 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/CustomerInterface.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/CustomerInterface.php index 70a4274b9ae..ccd9db8b57c 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/CustomerInterface.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/Customer/CustomerInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/Curl.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/Curl.php index 9514228215c..59096c01cb7 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php index db769ca0505..5c5fc1ab2b3 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/ChangeCustomerPasswordTest.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/ChangeCustomerPasswordTest.php index a38dbe7997e..30155b5f0c9 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/ChangeCustomerPasswordTest.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/ChangeCustomerPasswordTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerFromBackendTest.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerFromBackendTest.php index fb8101ffe60..d7a98b0e69b 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerFromBackendTest.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerFromBackendTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php index d94ba63da08..584c87c959c 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php index 86ad4230484..ca311d59c58 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/DeleteCustomerAddressEntityTest.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/DeleteCustomerAddressEntityTest.php index d72a5da5076..5d65ccc1807 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/DeleteCustomerAddressEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/DeleteCustomerAddressEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php index dbb977a638f..6b7b57ee30e 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateCustomerStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateCustomerStep.php index 086c0b56597..1ffc64e2a48 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateCustomerStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateCustomerStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateNewAddressesFixturesStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateNewAddressesFixturesStep.php index 089149eba97..5440c158a36 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateNewAddressesFixturesStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateNewAddressesFixturesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php index e286c0d1ae4..d2862199223 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php index fa255f4dbbf..5ee69c59155 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LogoutCustomerStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LogoutCustomerStep.php index 42c269772e6..6a1297f7657 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LogoutCustomerStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/LogoutCustomerStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/OpenCustomerOnBackendStep.php b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/OpenCustomerOnBackendStep.php index 31a5dd32053..b8bf6e91a14 100644 --- a/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/OpenCustomerOnBackendStep.php +++ b/dev/tests/functional/tests/app/Mage/Customer/Test/TestStep/OpenCustomerOnBackendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Directory/Test/Block/Currency/Switcher.php b/dev/tests/functional/tests/app/Mage/Directory/Test/Block/Currency/Switcher.php index c92d9f3107f..bda099d0c11 100644 --- a/dev/tests/functional/tests/app/Mage/Directory/Test/Block/Currency/Switcher.php +++ b/dev/tests/functional/tests/app/Mage/Directory/Test/Block/Currency/Switcher.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php index 68831406725..2f2c1b826ed 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinkRow.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinkRow.php index bc128d95593..83e9abd2315 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinkRow.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinkRow.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php index 0f4f2e78d2c..38f861b9589 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SampleRow.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SampleRow.php index ff11eb02948..89b7749ad58 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SampleRow.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SampleRow.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php index 9c563618b40..dabd078a84e 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View.php index da074b6d711..3cc9225d169 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Links.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Links.php index 6d38cadd056..19f80beb17e 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Links.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Links.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Samples.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Samples.php index 2dfe6c4dc21..4c10cf9b5c2 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Samples.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Catalog/Product/View/Samples.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review.php index 9448190de96..7bc4210bedc 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items.php index 21447bff3eb..54b89993893 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items/Product.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items/Product.php index 637343e73ca..6b1ffd69a03 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Block/Checkout/Onepage/Review/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableLinksData.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableLinksData.php index dfa0fb5a0f1..e284c4bdd22 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableLinksData.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableLinksData.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductDetailsInWishlist.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductDetailsInWishlist.php index 0828ce8ada4..a8cfca55a10 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductDetailsInWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductDetailsInWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductForm.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductForm.php index 16df1d5bea5..4cbd4f2d459 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductForm.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableProductForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php index 2d8a7413735..7ac588e5b1a 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingIncludingTax.php index c1692abb232..1fc4cba30ae 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingTax.php index 85658857511..e0c18a469eb 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableIncludingTax.php index 32c6ac77b72..28b73a344dc 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertOrderTaxOnBackendDownloadableIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php index fc94664279b..e2e08dd6b89 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php index 26a79f15458..d8578ae6773 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php index 00cf11b2b91..3abff88ef7d 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php index f4d671e1251..3c2c25327de 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php index 6c405ccb7ac..0968f30765b 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php index eda51142842..0b2441d882c 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Fixture/Cart/Item.php index 3451a908cb7..64e9d3ed8a2 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Fixture/Cart/Item.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Fixture/Cart/Item.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/Curl.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/Curl.php index 82701df3a92..ce17ec7cc29 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/DownloadableProductInterface.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/DownloadableProductInterface.php index f4a6fcb2489..3de6e66089d 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/DownloadableProductInterface.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/Handler/DownloadableProductInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php index 39f09d1cd3c..374f6170f43 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/TaxCalculationForDownloadableProductTest.php b/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/TaxCalculationForDownloadableProductTest.php index ea64cc4118d..278c2b15c43 100644 --- a/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/TaxCalculationForDownloadableProductTest.php +++ b/dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/TaxCalculationForDownloadableProductTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline.php index 112a5ad09a5..fcc3d7d4ed4 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline/GiftMessageForm.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline/GiftMessageForm.php index 32d1525782c..18b66344944 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline/GiftMessageForm.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Inline/GiftMessageForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/Items/View.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/Items/View.php index 99150ceacd0..725cb260752 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/Items/View.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/Items/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/View.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/View.php index efcb7ddf9ae..703279387b9 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/View.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Block/Message/Order/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AbstractAssertGiftMessageOnFrontend.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AbstractAssertGiftMessageOnFrontend.php index 46d8c95889c..1631d0f1e7a 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AbstractAssertGiftMessageOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AbstractAssertGiftMessageOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php index eaf727c9adc..4997ce7096e 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php index 1d6ea4967c8..db68268eb99 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Fixture/GiftMessage/Items.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Fixture/GiftMessage/Items.php index 2ff30dc0d4c..679fb621561 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Fixture/GiftMessage/Items.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/Fixture/GiftMessage/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php index 674a4d2fc93..c6e65d39ff4 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestStep/AddGiftMessageStep.php b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestStep/AddGiftMessageStep.php index b473de4236f..e44b50984f0 100644 --- a/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestStep/AddGiftMessageStep.php +++ b/dev/tests/functional/tests/app/Mage/GiftMessage/Test/TestStep/AddGiftMessageStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Configuration.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Configuration.php index eeff93eba8e..b303cfa5643 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Configuration.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Configuration.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/ContinueBlock.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/ContinueBlock.php index 16bca955125..007baf8a40f 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/ContinueBlock.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/ContinueBlock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/License.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/License.php index 82e44fcc9a6..1c53f99a931 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/License.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/License.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Localization.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Localization.php index d283ae222f0..68fa38435ce 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Localization.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Localization.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Main.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Main.php index 5b6c9af499d..e3e2aae3c58 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Main.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Main.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/PersonalInformation.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/PersonalInformation.php index 466e046d856..ce87c829272 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/PersonalInformation.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/PersonalInformation.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Welcome.php b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Welcome.php index 68470111fc9..4d6576abd17 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Block/Welcome.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Block/Welcome.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertAgreementTextPresent.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertAgreementTextPresent.php index 5edcbcae629..0ac4edae04b 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertAgreementTextPresent.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertAgreementTextPresent.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertCurrencySelected.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertCurrencySelected.php index 142ef0ac568..b75b89271b3 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertCurrencySelected.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertCurrencySelected.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertLanguageSelected.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertLanguageSelected.php index a9a6b2e266e..7110ea251fe 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertLanguageSelected.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertLanguageSelected.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertRewritesEnabled.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertRewritesEnabled.php index 276c32f721e..79bfa1481fa 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertRewritesEnabled.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertRewritesEnabled.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSecureUrlEnabled.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSecureUrlEnabled.php index a94950d3c46..e9e183ef684 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSecureUrlEnabled.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSecureUrlEnabled.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSuccessInstall.php b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSuccessInstall.php index facf55e98c3..e0fbe237056 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSuccessInstall.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/Constraint/AssertSuccessInstall.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest.php index 59c0b52f52c..fc0d682a7b6 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest2.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest2.php index faae02459ff..e695e2556af 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest2.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest2.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest3.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest3.php index 89ad71fbde6..87377ebc248 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest3.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest3.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest4.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest4.php index a93bc9c6cdd..cdb3cc49c49 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest4.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest4.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest5.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest5.php index aa5f98200ad..f4b10910f34 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest5.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest5.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest6.php b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest6.php index 37386929cf9..1a99a91fbd0 100644 --- a/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest6.php +++ b/dev/tests/functional/tests/app/Mage/Install/Test/TestCase/InstallTest6.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php b/dev/tests/functional/tests/app/Mage/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php index 28fa95d96f7..7b676829db4 100644 --- a/dev/tests/functional/tests/app/Mage/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php +++ b/dev/tests/functional/tests/app/Mage/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Footer.php b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Footer.php index b0f307a73f0..98713cc9f0b 100644 --- a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Footer.php +++ b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Footer.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Header.php b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Header.php index 70f2d6dd3ae..75623e11100 100644 --- a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Header.php +++ b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Header.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Title.php b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Title.php index f9ff32fe06e..a215bb2c206 100644 --- a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Title.php +++ b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Title.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Topmenu.php b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Topmenu.php index 043d2ba0b06..86007ef4e4c 100644 --- a/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Topmenu.php +++ b/dev/tests/functional/tests/app/Mage/Page/Test/Block/Html/Topmenu.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Payment/Test/Block/Form/Cc.php b/dev/tests/functional/tests/app/Mage/Payment/Test/Block/Form/Cc.php index 845a7a85bd8..56ec50aa2b2 100644 --- a/dev/tests/functional/tests/app/Mage/Payment/Test/Block/Form/Cc.php +++ b/dev/tests/functional/tests/app/Mage/Payment/Test/Block/Form/Cc.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Payment/Test/Constraint/Assert3DSecureVerificationFailed.php b/dev/tests/functional/tests/app/Mage/Payment/Test/Constraint/Assert3DSecureVerificationFailed.php index 811d2117940..fd11fda90c1 100644 --- a/dev/tests/functional/tests/app/Mage/Payment/Test/Constraint/Assert3DSecureVerificationFailed.php +++ b/dev/tests/functional/tests/app/Mage/Payment/Test/Constraint/Assert3DSecureVerificationFailed.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Payment/Test/TestStep/Fill3DSecureCreditCardValidationStep.php b/dev/tests/functional/tests/app/Mage/Payment/Test/TestStep/Fill3DSecureCreditCardValidationStep.php index 369a845f378..610c1843331 100644 --- a/dev/tests/functional/tests/app/Mage/Payment/Test/TestStep/Fill3DSecureCreditCardValidationStep.php +++ b/dev/tests/functional/tests/app/Mage/Payment/Test/TestStep/Fill3DSecureCreditCardValidationStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php index 744587b5d3b..cd7642ffb91 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Addresses.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Addresses.php index 64557510bd4..7412f128416 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Addresses.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Addresses.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php index df5dec0d99e..9167421b226 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Shortcut.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Shortcut.php index 4afcce3d556..0851028d980 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Shortcut.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Shortcut.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Form/Centinel.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Form/Centinel.php index f6e045749f4..06ba71b81f0 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Form/Centinel.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Form/Centinel.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Hosted/Pro/Form.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Hosted/Pro/Form.php index 851877ca579..d1844033bc6 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Hosted/Pro/Form.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Hosted/Pro/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Login.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Login.php index d26e734514f..04a878118cb 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Login.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Login.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/NewLogin.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/NewLogin.php index 0154eca2e85..97f8dc91ca3 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/NewLogin.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/NewLogin.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2018 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldAddresses.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldAddresses.php index 5e6f75fb74e..bcf0d56b412 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldAddresses.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldAddresses.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldLogin.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldLogin.php index e3448928843..87a86a786c8 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldLogin.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldLogin.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldReview.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldReview.php index 9ef50388142..08209968881 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldReview.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/OldReview.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Advanced/Form.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Advanced/Form.php index 7b8cdb6e5c5..9390a0582a3 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Advanced/Form.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Advanced/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Link/Form.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Link/Form.php index f2d018026a7..312b78a17de 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Link/Form.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Payflow/Link/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Product/View.php index c099b05aa4b..9f9ce15d7e3 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Review.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Review.php index b405aa59ba9..577f8cc8997 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Review.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Review.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Constraint/AssertTransaction.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Constraint/AssertTransaction.php index 461eefc60ee..a2a13d2e3b3 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Constraint/AssertTransaction.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Constraint/AssertTransaction.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Fixture/PaypalCustomer/Address.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Fixture/PaypalCustomer/Address.php index 83eeedbc9d1..f6652536d7a 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Fixture/PaypalCustomer/Address.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Fixture/PaypalCustomer/Address.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/Page/Paypal.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/Page/Paypal.php index d726e54491a..7f5b6f18a8c 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/Page/Paypal.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/Page/Paypal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2018 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForOnlinePaymentMethodsTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForOnlinePaymentMethodsTest.php index 9aac49d03a4..f8189e42c96 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForOnlinePaymentMethodsTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForOnlinePaymentMethodsTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForPaypalExpressCheckoutTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForPaypalExpressCheckoutTest.php index cca02f46b00..785ce4d556f 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForPaypalExpressCheckoutTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/AbstractCreateSalesEntityForPaypalExpressCheckoutTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateInvoiceForPaypalExpressCheckoutTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateInvoiceForPaypalExpressCheckoutTest.php index cfbdd59d094..1788e2a3947 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateInvoiceForPaypalExpressCheckoutTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateInvoiceForPaypalExpressCheckoutTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php index b63ef22e7da..0eedebe561d 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php index 31f2879030e..c09f7577dd6 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOfflineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php index ac99b576d04..65d99cd713d 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php index 2699cc5e196..f105f994e1b 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineInvoiceForOnlinePaymentsMethodsWithoutIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithIFrameTest.php index f34aaef3c71..03974edf691 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithoutIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithoutIFrameTest.php index 5180f195e76..008bad5f923 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithoutIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForOnlinePaymentsMethodsWithoutIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForPaypalExpressCheckoutTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForPaypalExpressCheckoutTest.php index 7b899008104..8b751918a0b 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForPaypalExpressCheckoutTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOnlineRefundForPaypalExpressCheckoutTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWith3DSecureTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWith3DSecureTest.php index 6208ddc4b7a..8097b763ad1 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWith3DSecureTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWith3DSecureTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithIFrameTest.php index ddd84917bb8..7b46920db00 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithoutIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithoutIFrameTest.php index e148b186c6c..1fc194d21e7 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithoutIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithOnlinePaymentsMethodsWithoutIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithPayPalStandardTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithPayPalStandardTest.php index 3348d6aae1a..ebb28e963da 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithPayPalStandardTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateOrderWithPayPalStandardTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithIFrameTest.php index 5c46c196052..dd663a76b77 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithoutIFrameTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithoutIFrameTest.php index 004c4301fa6..de5d297f1a3 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithoutIFrameTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForOnlinePaymentMethodsWithoutIFrameTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForPaypalExpressCheckoutTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForPaypalExpressCheckoutTest.php index 94100f9456d..5dbede5b9dc 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForPaypalExpressCheckoutTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/CreateShipmentForPaypalExpressCheckoutTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonFromProductPageTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonFromProductPageTest.php index 7bb9d31a061..c4de9ac7dab 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonFromProductPageTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonFromProductPageTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.php index cef4af3aab5..6639c08c4ab 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalFromProductPageStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalFromProductPageStep.php index 2226df80009..13cd3350d26 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalFromProductPageStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalFromProductPageStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalStep.php index ee549ad19a3..e3b18fa9134 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/CheckoutWithPayPalStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php index b893e174980..f1289f6e0cd 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2018-2020 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/FillCreditCardInIFrameStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/FillCreditCardInIFrameStep.php index 2042d9797f3..25b9b72a203 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/FillCreditCardInIFrameStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/FillCreditCardInIFrameStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/LoginToPayPalStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/LoginToPayPalStep.php index 594d6fda9a1..290bc2cd505 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/LoginToPayPalStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/LoginToPayPalStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2018-2020 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/PlaceOrderStep.php b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/PlaceOrderStep.php index 18f1608dbf5..ac1601d1491 100644 --- a/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/PlaceOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/PlaceOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingInProductPage.php b/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingInProductPage.php index cc2a19ec27a..cf88897fd21 100644 --- a/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingInProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingInProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingOnReviewPage.php b/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingOnReviewPage.php index 6b7adf1e5f1..21e470681c7 100644 --- a/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingOnReviewPage.php +++ b/dev/tests/functional/tests/app/Mage/Rating/Test/Constraint/AssertProductRatingOnReviewPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Rating/Test/Fixture/Rating/Stores.php b/dev/tests/functional/tests/app/Mage/Rating/Test/Fixture/Rating/Stores.php index 765ffb7af74..51e5b5583bc 100644 --- a/dev/tests/functional/tests/app/Mage/Rating/Test/Fixture/Rating/Stores.php +++ b/dev/tests/functional/tests/app/Mage/Rating/Test/Fixture/Rating/Stores.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/Curl.php b/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/Curl.php index a16bbf1b31b..abf644acee8 100644 --- a/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/RatingInterface.php b/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/RatingInterface.php index 4441813cb9f..2bbeb008693 100644 --- a/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/RatingInterface.php +++ b/dev/tests/functional/tests/app/Mage/Rating/Test/Handler/RatingInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View.php index 270ad07480f..16c3d19eb53 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Form.php b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Form.php index 04d7b9fa685..1274be9c034 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Form.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Review.php b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Review.php index aaa4eb53ce0..558efbf9942 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Review.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Block/Product/View/Review.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewForm.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewForm.php index 2f0ca524abd..0863f49c5d7 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewForm.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewInGrid.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewInGrid.php index 814d2c3475d..5f828046a54 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php index 62584c8daa1..1397e1d3c4e 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewOnProductPage.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewOnProductPage.php index e7ac4552247..48af55f2ba8 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertProductReviewOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php index 7824eff25fb..58471f78fa6 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php index fc7c0fe37de..791fb156826 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php index e073752ce0b..e5018816226 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertSetApprovedProductReview.php b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertSetApprovedProductReview.php index af017996efb..b8dbe0324f9 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertSetApprovedProductReview.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Constraint/AssertSetApprovedProductReview.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/EntityId.php b/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/EntityId.php index 16e98fdb77c..81a469901c5 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/EntityId.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/EntityId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/Ratings.php b/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/Ratings.php index e335c437e95..2ba56c52a60 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/Ratings.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/Fixture/Review/Ratings.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php b/dev/tests/functional/tests/app/Mage/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php index 3b9049a04a6..d2696d11958 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/AddFrontendReviewStep.php b/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/AddFrontendReviewStep.php index fba2dfe647f..c1342ea993f 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/AddFrontendReviewStep.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/AddFrontendReviewStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/DeleteAllRatingsStep.php b/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/DeleteAllRatingsStep.php index ce917427c7e..a25380d1479 100644 --- a/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/DeleteAllRatingsStep.php +++ b/dev/tests/functional/tests/app/Mage/Review/Test/TestStep/DeleteAllRatingsStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractProductView.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractProductView.php index c830dc634eb..803383ffbdd 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractProductView.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractProductView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities.php index b32d771ce15..16115b8fc81 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity.php index fc7aef88a48..058912eb739 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity/Items/Product.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity/Items/Product.php index 3e6fa4283ae..4d25c035d76 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/AbstractSalesEntities/SalesEntity/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos.php index 08e272e430d..cbe52cfce16 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo.php index c5a375474c1..d345f5e0b9a 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items.php index 6901af120c6..d20e24824b1 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items/Product.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items/Product.php index 89b548dc6b2..4f5ac78cc82 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/CreditMemos/CreditMemo/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/History.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/History.php index 0763d518e7d..53e27510405 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/History.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/History.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices.php index ca1e05d90c7..724edf3c2ca 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice.php index 0a0a3a9f123..85189787a87 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items.php index d47be569678..462c3bb40d0 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items/Product.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items/Product.php index 5321263bb54..32514209ade 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/Invoices/Invoice/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/OrderPrint/View.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/OrderPrint/View.php index 9dd6e64cec5..93015bc1eac 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/OrderPrint/View.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/OrderPrint/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View.php index 21e0b36aecd..b406a94dbfe 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/ActionsToolbar.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/ActionsToolbar.php index e42f1e92012..410ebfd6479 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/ActionsToolbar.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/ActionsToolbar.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items.php index 400252312d5..b69c1fd5ade 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items/Product.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items/Product.php index 6b2695d75ea..98a2405617f 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Totals.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Totals.php index 0b5b4d335f6..85b58befbad 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Totals.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Order/View/Totals.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Widget/Guest/Form.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Widget/Guest/Form.php index b0e62692486..bf6c492f3e3 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Widget/Guest/Form.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Block/Widget/Guest/Form.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertItems.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertItems.php index 3da1ac5664d..10d005c6b18 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertItems.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertNoButtonOnOrderPage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertNoButtonOnOrderPage.php index f3744efc425..6f0d161e31b 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertNoButtonOnOrderPage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertNoButtonOnOrderPage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertOrdersAddress.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertOrdersAddress.php index 099d661b3d3..7e0fbc38374 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertOrdersAddress.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertOrdersAddress.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSales.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSales.php index df1c5b88025..1b3c1a3c6a1 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSales.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSales.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInGrid.php index 4d3167baba7..f2f726c7b34 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityGrid.php index 969d6f5582e..14296f523d7 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityTab.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityTab.php index 375afbb787e..c7fae53afc8 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityTab.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityInSalesEntityTab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityItemsOnFrontend.php index 1fcf252550e..927d8e62000 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AbstractAssertSalesEntityItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertConfigurableProductInItemsOrderedGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertConfigurableProductInItemsOrderedGrid.php index 4caf715891c..4056e4ece3a 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertConfigurableProductInItemsOrderedGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertConfigurableProductInItemsOrderedGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItems.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItems.php index 881b8ecb4f5..a0b1f5eb6e9 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItems.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItemsOnFrontend.php index ceba30f5a83..fa74f805e48 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoConfigurableItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosGrid.php index 4792a7e9c7c..13ff88b549b 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosTab.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosTab.php index 238bf607123..c3f50619e6f 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosTab.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoInCreditMemosTab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItems.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItems.php index 8daec8c30d3..57a4a46ab70 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItems.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItemsOnFrontend.php index f870f68f76c..75a384c72b4 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoSuccessCreateMessage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoSuccessCreateMessage.php index 821240e1fd3..64220e4fd3e 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoSuccessCreateMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertCreditMemoSuccessCreateMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItems.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItems.php index 3c1509eccc2..e0df10bbc24 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItems.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItemsOnFrontend.php index 131c2b54866..dfbd0c2aef6 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceConfigurableItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php index 1d6b124548a..2cb02c2f98c 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php index f56574bf59c..6612687e2ce 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItems.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItems.php index 2dac25d6410..2a40ff75a99 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItems.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItemsOnFrontend.php index 41cb4552a3a..3a2e517311b 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php index 99057e47069..78a722de2b1 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php index d9988d4d6bf..5749320db42 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertItemsOrderedBlockIsEmpty.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertItemsOrderedBlockIsEmpty.php index 736a553defd..6eafe74e16e 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertItemsOrderedBlockIsEmpty.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertItemsOrderedBlockIsEmpty.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoCreditMemoButton.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoCreditMemoButton.php index a0ff657dce6..07f44345988 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoCreditMemoButton.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoCreditMemoButton.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoInvoiceButton.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoInvoiceButton.php index 456ff2035f5..28929ad37ef 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoInvoiceButton.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertNoInvoiceButton.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderButtonsAvailable.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderButtonsAvailable.php index 321f49f9899..3db9a86deb5 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderButtonsAvailable.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderButtonsAvailable.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php index 355f087f26b..35216641ef5 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCreateSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCreateSuccessMessage.php index a4d00556541..2f68581f366 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCreateSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderCreateSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderGrandTotal.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderGrandTotal.php index a48de6348a7..18403793c3c 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderGrandTotal.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderGrandTotal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGrid.php index bb6e0ad9c64..65d2de4b492 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php index 8736503e3e4..4b3922ea5f2 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php index 29e14fe3549..27da71ecc0c 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersBillingAddress.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersBillingAddress.php index c13a2444209..3900db443df 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersBillingAddress.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersBillingAddress.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersCount.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersCount.php index bec85a5c004..d403edfc260 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersCount.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersCount.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersGrandTotal.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersGrandTotal.php index 8eac70be7ed..2a5dab03470 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersGrandTotal.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersGrandTotal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersShippingAddress.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersShippingAddress.php index f9b8c2e4caf..9b44d5c111f 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersShippingAddress.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertOrdersShippingAddress.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php index e9329e661a0..e5e4a06a10e 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductsVisibilityInItemsOrderedBlock.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductsVisibilityInItemsOrderedBlock.php index fc982f27d6b..9acddac528e 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductsVisibilityInItemsOrderedBlock.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertProductsVisibilityInItemsOrderedBlock.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertReorderedOrderStatusIsCorrect.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertReorderedOrderStatusIsCorrect.php index ce73dc70782..801a2313628 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertReorderedOrderStatusIsCorrect.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertReorderedOrderStatusIsCorrect.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php index 5eb6d9e2432..01423c82f4e 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php index 6368d8e8cee..a4a4b3c9dea 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php index 31916ec4307..b7642718647 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php index f4be1344014..eb6b2b561d8 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/FrontendActionsForSalesAssert.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/FrontendActionsForSalesAssert.php index 3eb2eb85d67..4b6f571770d 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/FrontendActionsForSalesAssert.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Constraint/FrontendActionsForSalesAssert.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/BillingAddressId.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/BillingAddressId.php index 0935af748fa..40b84a743b3 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/BillingAddressId.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/BillingAddressId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/CustomerId.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/CustomerId.php index e4c34db334c..d910c8981c6 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/CustomerId.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/CustomerId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/EntityId.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/EntityId.php index 93ed1376abc..b1b79379753 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/EntityId.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/EntityId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/StoreId.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/StoreId.php index 31366b68eee..45195bd9ee5 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/StoreId.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Fixture/Order/StoreId.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/Curl.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/Curl.php index 4f9394c8ace..6fd93c6ea92 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/OrderInterface.php b/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/OrderInterface.php index 496e5e143fc..3609699a280 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/OrderInterface.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/Handler/Order/OrderInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CancelCreatedOrderTest.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CancelCreatedOrderTest.php index 854d6e8d11e..a0700924ba5 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CancelCreatedOrderTest.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CancelCreatedOrderTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendCustomerPageTest.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendCustomerPageTest.php index 98f668c5a10..b77620d3392 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendCustomerPageTest.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendCustomerPageTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendWithinOfflinePaymentMethodsTest.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendWithinOfflinePaymentMethodsTest.php index 7eb493d2985..bb8cb61845d 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendWithinOfflinePaymentMethodsTest.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/CreateOrderFromBackendWithinOfflinePaymentMethodsTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php index 4f3501df961..26ec36e655b 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/ReorderOrderEntityTest.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/ReorderOrderEntityTest.php index 87dfeca1f5f..62b00f33033 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/ReorderOrderEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestCase/ReorderOrderEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateRefundStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateRefundStep.php index a234bf13e84..c0d24630206 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateRefundStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateRefundStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateSalesEntityStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateSalesEntityStep.php index 7794c6ebadc..2872006a140 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateSalesEntityStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AbstractCreateSalesEntityStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AddProductsStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AddProductsStep.php index a36668b0dbb..780582830ca 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AddProductsStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/AddProductsStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateInvoiceStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateInvoiceStep.php index 3fe6dbc7745..fe74ec340fd 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateInvoiceStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateInvoiceStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderStep.php index bec7685d70e..96bff43f519 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderViaCurlStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderViaCurlStep.php index 2062841a5aa..dedc7f7db18 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderViaCurlStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateNewOrderViaCurlStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOfflineRefundStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOfflineRefundStep.php index 8a226757f8b..6e760da699f 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOfflineRefundStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOfflineRefundStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOnlineRefundStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOnlineRefundStep.php index 26829f03a48..8377a50f422 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOnlineRefundStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/CreateOnlineRefundStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/FillBillingAddressStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/FillBillingAddressStep.php index cad5f6b38df..d35b84bea3c 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/FillBillingAddressStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/FillBillingAddressStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/MoveProductsFromShoppingCartSidebarStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/MoveProductsFromShoppingCartSidebarStep.php index f3e508658fe..4a27aa28e60 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/MoveProductsFromShoppingCartSidebarStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/MoveProductsFromShoppingCartSidebarStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenOrderStep.php index 84ef6c5fb29..d1e96375eee 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php index 17015df26b3..2adec62b6f5 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrdersStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrdersStep.php index 73db5837113..85ee83d1b58 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrdersStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/OpenSalesOrdersStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/PrintOrderOnFrontendStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/PrintOrderOnFrontendStep.php index af3b2eef072..65564dc3092 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/PrintOrderOnFrontendStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/PrintOrderOnFrontendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/ReorderOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/ReorderOrderStep.php index fca4edde7de..fe4d6c5c33a 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/ReorderOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/ReorderOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectCustomerOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectCustomerOrderStep.php index fe34c7a2f14..45457b41434 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectCustomerOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectCustomerOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php index 1a70e7cb60c..8b5cbc29081 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php index 2caaa26cd8b..5d614f1625f 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectStoreOnCreateOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectStoreOnCreateOrderStep.php index 6fd53a1bc0a..99fa5eac3e6 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectStoreOnCreateOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SelectStoreOnCreateOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SubmitOrderStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SubmitOrderStep.php index 0e35e7b8749..60d5addc366 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SubmitOrderStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/SubmitOrderStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/UpdateProductsDataStep.php b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/UpdateProductsDataStep.php index e867f009139..113a93f3789 100644 --- a/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/UpdateProductsDataStep.php +++ b/dev/tests/functional/tests/app/Mage/Sales/Test/TestStep/UpdateProductsDataStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AbstractCartPriceRuleApplying.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AbstractCartPriceRuleApplying.php index 72337d5c6df..4fa59888ee2 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AbstractCartPriceRuleApplying.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AbstractCartPriceRuleApplying.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php index e141c293507..8ed47ba42ab 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php index 6f56fc0e078..d45baf807ed 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php index 015aef66986..619db8ff0d7 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php index 9624209d648..98476a1d761 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsAppliedToShipping.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsAppliedToShipping.php index d93d1de5703..a5e5cd16187 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsAppliedToShipping.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsAppliedToShipping.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php index 9883cd6b305..c47f111ba5f 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php index 4d35166d3f7..2f4c4d84905 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php index 1ca1e4bf678..abda90bed33 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Fixture/SalesRule/WebsiteIds.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Fixture/SalesRule/WebsiteIds.php index 7445e188f36..259f6c280f6 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Fixture/SalesRule/WebsiteIds.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Fixture/SalesRule/WebsiteIds.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php index dfbb9ddc039..94cb0b23327 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php index 89b892ced9e..9a9128fa20a 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php index ddba0ad00fb..3638251dcb8 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php index 71226fbb6a3..645818771ee 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php index dec4d46f9fb..0f6c0ed5446 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php index 4f0be6bec57..7f81701773a 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/CreateSalesRuleStep.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/CreateSalesRuleStep.php index 7ae6252f457..4fe84c500b9 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/CreateSalesRuleStep.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/CreateSalesRuleStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php index 356bdb35fcd..957f8015d4c 100644 --- a/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php +++ b/dev/tests/functional/tests/app/Mage/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments.php index e61656404bd..ee52c282bb8 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment.php index c03cc15b374..57a5da96310 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items.php index 2a6fec35c7b..1f8361065be 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items/Product.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items/Product.php index fb8903d53ae..735e1e239e8 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Block/Sales/Order/Shipments/Shipment/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertNoShipButton.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertNoShipButton.php index 69e69673d6a..babe239e35d 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertNoShipButton.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertNoShipButton.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItems.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItems.php index b05eae24ba5..114930d90df 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItems.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItemsOnFrontend.php index 48d2377a292..2a047688254 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentConfigurableItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php index ed35c36aa0a..4c2fd212139 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php index 5e418293c05..5cf8a7455fd 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItems.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItems.php index 931c532ec1b..12e52935ca5 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItems.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItems.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItemsOnFrontend.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItemsOnFrontend.php index 2dabc0e526a..6be53168dd4 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItemsOnFrontend.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentItemsOnFrontend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php index 8d1f6e634bb..dfded389685 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php index ca6c6308f95..4cdf75ba854 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Shipping/Test/TestStep/CreateShipmentStep.php b/dev/tests/functional/tests/app/Mage/Shipping/Test/TestStep/CreateShipmentStep.php index 8ec378e49fc..f8da5ff5d83 100644 --- a/dev/tests/functional/tests/app/Mage/Shipping/Test/TestStep/CreateShipmentStep.php +++ b/dev/tests/functional/tests/app/Mage/Shipping/Test/TestStep/CreateShipmentStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapContent.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapContent.php index 7e4032a0925..b95bfad7756 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapContent.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapContent.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php index 25c0896e847..a54134db72f 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php index 645db09cba3..e43bd0e2aa7 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapInGrid.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapInGrid.php index 2e0cb5a29e6..bc526693fed 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php index 349dfba5f7a..d151e6fac6f 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php index 906d1d41c84..85e69eb26b0 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/CreateSitemapEntityTest.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/CreateSitemapEntityTest.php index d935374d1ec..2b8bcd741e1 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/CreateSitemapEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/CreateSitemapEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php b/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php index 20296c1e8fe..47e48f6d7c8 100644 --- a/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertOrderTaxOnBackend.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertOrderTaxOnBackend.php index a3376919708..670f6c1f3fc 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertOrderTaxOnBackend.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertOrderTaxOnBackend.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTax.php index 9cbde7462a4..2605c9b1efd 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php index e85ad7d57c9..50f6071a5a5 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php index b11b2887d58..4ae054abd49 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php index ad301080fd1..36e4bad4413 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php index 28c6dc2c270..b86c3e082e1 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php index d7fc95c6456..0381688690c 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php index 7dbe700886d..b6ad809c383 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php index afbc77e4d81..5ec30f52c52 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php index 0281c5cee01..822988886e8 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php index edd22a7ef3d..b1be1b3c042 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateForm.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateForm.php index 27babf7e2e5..351b79ec136 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateForm.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInGrid.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInGrid.php index a915660e625..ef5782463e2 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInTaxRule.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInTaxRule.php index b2b73fd1b4f..ddf9bc2b5a3 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInTaxRule.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateInTaxRule.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateIsInCorrectRange.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateIsInCorrectRange.php index de679ac1221..8fd43aa4e16 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateIsInCorrectRange.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateIsInCorrectRange.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInGrid.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInGrid.php index 551f5f70fd4..fe7739ec04d 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php index 44c59f0f78c..f04ed001336 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php index 1fa5213579d..861f8bcad4a 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php index dbc56a8aa97..ac45377aba1 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleForm.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleForm.php index dd2547c629f..d290b280355 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleForm.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleInGrid.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleInGrid.php index 42825aa9088..626548deff8 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php index e104c32fb66..9b3d3afcd5e 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php index 72de0e5e47a..ceaaa5963cc 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php index 6598bb68e13..5e80246d758 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php index 16f6c0ace51..61af8ccf512 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php index 488572cd30a..8fbe9131169 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php index cc1a915ca7c..da47c3ee6e5 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxClass.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxClass.php index 1fab511ef0f..ddc7116d708 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxClass.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxClass.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxRate.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxRate.php index 1f48d990e2e..060446620f3 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxRate.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Fixture/TaxRule/TaxRate.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/Curl.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/Curl.php index e84074c5cf5..abb40d2ebc4 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/TaxClassInterface.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/TaxClassInterface.php index 8ffebec0352..07e483520fb 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/TaxClassInterface.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxClass/TaxClassInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/Curl.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/Curl.php index 06b1c57469b..72af79da727 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/TaxRateInterface.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/TaxRateInterface.php index 35f2598a190..d59db0d3e06 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/TaxRateInterface.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRate/TaxRateInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/Curl.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/Curl.php index fb5818478fd..6818d1c7c59 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/TaxRuleInterface.php b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/TaxRuleInterface.php index 019b174db74..03b522b49bd 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/TaxRuleInterface.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/Handler/TaxRule/TaxRuleInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/AutomaticTaxApplyingBasedOnVatIdTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/AutomaticTaxApplyingBasedOnVatIdTest.php index 7f2b02d44e6..ac089530b4a 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/AutomaticTaxApplyingBasedOnVatIdTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/AutomaticTaxApplyingBasedOnVatIdTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRateEntityTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRateEntityTest.php index b8f4a5007bf..34e2ff62349 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRateEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRateEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRuleEntityTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRuleEntityTest.php index 7abdb3b9df7..0fe5bbc17c5 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRuleEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/CreateTaxRuleEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/DeleteTaxRateEntityTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/DeleteTaxRateEntityTest.php index 757705a8dd1..2da2d7c6fab 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/DeleteTaxRateEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/DeleteTaxRateEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxCalculationTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxCalculationTest.php index 2583442e329..e89398a51e4 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxCalculationTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxCalculationTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxWithCrossBorderTest.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxWithCrossBorderTest.php index 247b95771b2..87df062f64c 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxWithCrossBorderTest.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestCase/TaxWithCrossBorderTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/CreateTaxRuleStep.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/CreateTaxRuleStep.php index 3ef02f51f0b..234f7bbb976 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/CreateTaxRuleStep.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/CreateTaxRuleStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/DeleteAllTaxRulesStep.php b/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/DeleteAllTaxRulesStep.php index ed21cdba385..5ed11c8dbbd 100644 --- a/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/DeleteAllTaxRulesStep.php +++ b/dev/tests/functional/tests/app/Mage/Tax/Test/TestStep/DeleteAllTaxRulesStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Links.php b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Links.php index 21b6b6d4395..c0f089b41d2 100644 --- a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Links.php +++ b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Links.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Title.php b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Title.php index 6d2e0908060..1876f922807 100644 --- a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Title.php +++ b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/Title.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/TopLinks.php b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/TopLinks.php index bdc3dcb357c..1bb1f7c0472 100644 --- a/dev/tests/functional/tests/app/Mage/Theme/Test/Block/TopLinks.php +++ b/dev/tests/functional/tests/app/Mage/Theme/Test/Block/TopLinks.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart.php index 943eebbfd44..d9f04594e7c 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart/CartItem.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart/CartItem.php index 0253c572d8b..73121bbebde 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart/CartItem.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Cart/CartItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ListProduct.php index 96acb815e53..572719f08d2 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ListProduct.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ListProduct.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/Price.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/Price.php index b1681cf7f78..32e91659ebe 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/Price.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/Price.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ProductList/ProductItem.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ProductList/ProductItem.php index c40b118697f..dfa50b95a0d 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ProductList/ProductItem.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/ProductList/ProductItem.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/View.php index 61fa34b5005..e04bab48999 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/View.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Block/Product/View.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/Constraint/AssertFptApplied.php b/dev/tests/functional/tests/app/Mage/Weee/Test/Constraint/AssertFptApplied.php index ee4ebc24551..4fd5e347b2e 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/Constraint/AssertFptApplied.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/Constraint/AssertFptApplied.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Weee/Test/TestCase/CreateTaxWithFptTest.php b/dev/tests/functional/tests/app/Mage/Weee/Test/TestCase/CreateTaxWithFptTest.php index 7346b190977..e7e6bc68ede 100644 --- a/dev/tests/functional/tests/app/Mage/Weee/Test/TestCase/CreateTaxWithFptTest.php +++ b/dev/tests/functional/tests/app/Mage/Weee/Test/TestCase/CreateTaxWithFptTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/FormPageActions.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/FormPageActions.php index 971b85ae28a..f49dca88661 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/FormPageActions.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/FormPageActions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php index 981fe0d2f55..8043c22b3f8 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdates.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdates.php index 196b7f165f1..7216fbd93bb 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdates.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdates.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/GenericPages.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/GenericPages.php index 78ab0b96c52..5d85f78ef69 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/GenericPages.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/GenericPages.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/LayoutForm.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/LayoutForm.php index 010497e06a8..4957cc91a6c 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/LayoutForm.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/LayoutForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Product/Grid.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Product/Grid.php index a91e2d6007e..3ab7fc658d5 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Product/Grid.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Product/Grid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Products.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Products.php index 34d5fc55c59..26dddd88e9f 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Products.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/LayoutUpdatesType/Products.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php index 3f0ce87e278..6a3f43ec6ad 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptions.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptions.php index b2d690657b8..0cb57a6c496 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptions.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptionsType/WidgetOptionsForm.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptionsType/WidgetOptionsForm.php index 35599df1eb1..295f2a6fe0f 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptionsType/WidgetOptionsForm.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetOptionsType/WidgetOptionsForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php index 8300606d544..a69d710b393 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php index 37e9ae4f259..264a9ab8e8a 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/WidgetForm.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/WidgetForm.php index 163767471f0..7bc565abdb9 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/WidgetForm.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/Adminhtml/WidgetForm.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/WidgetView.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/WidgetView.php index f0d43238b8e..13438273a10 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Block/WidgetView.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Block/WidgetView.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetInGrid.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetInGrid.php index 45ffbeff255..d2f4de1faac 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetInGrid.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetInGrid.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php index 761c5f219c5..73257ff0ac5 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/LayoutUpdates.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/LayoutUpdates.php index d811bda7f47..91fdd2919dd 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/LayoutUpdates.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/LayoutUpdates.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/StoreIds.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/StoreIds.php index e06ab8c15df..a438c47f48d 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/StoreIds.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/StoreIds.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/WidgetOptions.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/WidgetOptions.php index 44ef7459017..76b62ac74db 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/WidgetOptions.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget/WidgetOptions.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/Curl.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/Curl.php index 6f4b42e277b..0c53e434f2a 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/Curl.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/Curl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/WidgetInterface.php b/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/WidgetInterface.php index d3de80e9827..21b51c18be6 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/WidgetInterface.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/Handler/Widget/WidgetInterface.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php b/dev/tests/functional/tests/app/Mage/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php index 57c35b99866..d8ea1ad98ec 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Widget/Test/TestStep/DeleteAllWidgetsStep.php b/dev/tests/functional/tests/app/Mage/Widget/Test/TestStep/DeleteAllWidgetsStep.php index c90d4a6c520..086792bd368 100644 --- a/dev/tests/functional/tests/app/Mage/Widget/Test/TestStep/DeleteAllWidgetsStep.php +++ b/dev/tests/functional/tests/app/Mage/Widget/Test/TestStep/DeleteAllWidgetsStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist.php index 1c762c2fee5..7ebed3b18b9 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items.php index 7162c3c7925..76bb1ba4ddf 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php index 509acd487aa..1e4929c1828 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php index f2389e66431..bbb59ff7456 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductsToWishlistSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductsToWishlistSuccessMessage.php index 05fcfa65a77..a3843174e86 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductsToWishlistSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertAddProductsToWishlistSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php index 42eb69a6505..7cd69345c8a 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php index 80007c5a8b8..8f81a103313 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php index d15e9cf50ee..daa84088ce6 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php index a0d77fcc6d5..9546be62c45 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsArePresentInCustomerBackendWishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsArePresentInCustomerBackendWishlist.php index 42c51f5e380..d655ce1caeb 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsArePresentInCustomerBackendWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsArePresentInCustomerBackendWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php index bd9f9d0ac98..ae7d8f58dcb 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php index e9e936ce1bc..8fa204b46c6 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AbstractWishlistTest.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AbstractWishlistTest.php index e6e6679c39c..4461be0a3e0 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AbstractWishlistTest.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AbstractWishlistTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php index e69c0225ad0..a804b03024c 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php index 8b0c7598d98..ba90dcdbfcb 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php index 9c6993d197f..bde8a75ed89 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php index 990b92bf53b..bcbe3415d30 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestStep/AddProductsToWishlistStep.php b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestStep/AddProductsToWishlistStep.php index 8cb6f9707d3..c12ae87ce01 100644 --- a/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestStep/AddProductsToWishlistStep.php +++ b/dev/tests/functional/tests/app/Mage/Wishlist/Test/TestStep/AddProductsToWishlistStep.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php index 6ba7f22755f..7f41a325d1a 100644 --- a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php +++ b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/utils/bootstrap.php b/dev/tests/functional/utils/bootstrap.php index 466a339b3b0..9c3ec84ce68 100644 --- a/dev/tests/functional/utils/bootstrap.php +++ b/dev/tests/functional/utils/bootstrap.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/utils/generate.php b/dev/tests/functional/utils/generate.php index b0711cd5774..3998809974e 100644 --- a/dev/tests/functional/utils/generate.php +++ b/dev/tests/functional/utils/generate.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/dev/tests/functional/utils/generate/fixture.php b/dev/tests/functional/utils/generate/fixture.php index d07e206c4cd..2f580da95a3 100644 --- a/dev/tests/functional/utils/generate/fixture.php +++ b/dev/tests/functional/utils/generate/fixture.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/utils/generate/handler.php b/dev/tests/functional/utils/generate/handler.php index a9611e15e98..0c62f20902b 100644 --- a/dev/tests/functional/utils/generate/handler.php +++ b/dev/tests/functional/utils/generate/handler.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/utils/generate/page.php b/dev/tests/functional/utils/generate/page.php index f0a01d15f16..191391b2e30 100644 --- a/dev/tests/functional/utils/generate/page.php +++ b/dev/tests/functional/utils/generate/page.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/dev/tests/functional/utils/generate/repository.php b/dev/tests/functional/utils/generate/repository.php index 2c8ec406952..de080c1a551 100644 --- a/dev/tests/functional/utils/generate/repository.php +++ b/dev/tests/functional/utils/generate/repository.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Tests - * @package Tests_Functional + * @category Tests + * @package Tests_Functional * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/errors/404.php b/errors/404.php index 03d1da2a4b1..e2eeec703d0 100644 --- a/errors/404.php +++ b/errors/404.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Errors + * @category Mage + * @package Errors * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/errors/503.php b/errors/503.php index e6d8052d3bd..457ee4d4458 100644 --- a/errors/503.php +++ b/errors/503.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Errors + * @category Mage + * @package Errors * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/errors/processor.php b/errors/processor.php index 4cca4ecdb12..68273c1a056 100644 --- a/errors/processor.php +++ b/errors/processor.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Errors + * @category Mage + * @package Errors * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2020-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/errors/report.php b/errors/report.php index f76f9e9559a..37ef7d8f324 100644 --- a/errors/report.php +++ b/errors/report.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Errors + * @category Mage + * @package Errors * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/get.php b/get.php index 8f73e6de2c5..d4a781a3d08 100644 --- a/get.php +++ b/get.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2016-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/index.php b/index.php index d3b1c42597f..ca190786dca 100644 --- a/index.php +++ b/index.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2018-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/install.php b/install.php index 6f96995057e..48891faa3ba 100644 --- a/install.php +++ b/install.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Mage - * @package Mage + * @category Mage + * @package Mage * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @copyright Copyright (c) 2021-2022 The OpenMage Contributors (https://www.openmage.org) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) diff --git a/js/mage/adminhtml/product.js b/js/mage/adminhtml/product.js index 54908c3cf8e..97b3e811c37 100644 --- a/js/mage/adminhtml/product.js +++ b/js/mage/adminhtml/product.js @@ -392,7 +392,7 @@ Product.Configurable.prototype = { } var label_readonly = ''; var use_default_checked = ''; - if (attribute.use_default == '1') { + if (attribute.use_default == '1' || attribute.id == null) { use_default_checked = ' checked="checked"'; label_readonly = ' readonly="readonly"'; } diff --git a/lib/Unserialize/Parser.php b/lib/Unserialize/Parser.php index 3edcd3e024d..8a34a1dda79 100644 --- a/lib/Unserialize/Parser.php +++ b/lib/Unserialize/Parser.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Parser + * @category Unserialize + * @package Unserialize_Parser * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Arr.php b/lib/Unserialize/Reader/Arr.php index 6b052efbe4a..df5e7f2d911 100644 --- a/lib/Unserialize/Reader/Arr.php +++ b/lib/Unserialize/Reader/Arr.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/ArrKey.php b/lib/Unserialize/Reader/ArrKey.php index f66bc53345f..0a1cabdff75 100644 --- a/lib/Unserialize/Reader/ArrKey.php +++ b/lib/Unserialize/Reader/ArrKey.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/ArrValue.php b/lib/Unserialize/Reader/ArrValue.php index 808417d9d35..357037a94c8 100644 --- a/lib/Unserialize/Reader/ArrValue.php +++ b/lib/Unserialize/Reader/ArrValue.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Bool.php b/lib/Unserialize/Reader/Bool.php index 021781eb374..125690bbc08 100644 --- a/lib/Unserialize/Reader/Bool.php +++ b/lib/Unserialize/Reader/Bool.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Dbl.php b/lib/Unserialize/Reader/Dbl.php index cf2215ec975..598399c08d1 100644 --- a/lib/Unserialize/Reader/Dbl.php +++ b/lib/Unserialize/Reader/Dbl.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Int.php b/lib/Unserialize/Reader/Int.php index 52ad904f0f0..c389be178a9 100644 --- a/lib/Unserialize/Reader/Int.php +++ b/lib/Unserialize/Reader/Int.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Null.php b/lib/Unserialize/Reader/Null.php index f355ac6967b..35b23ee49a9 100644 --- a/lib/Unserialize/Reader/Null.php +++ b/lib/Unserialize/Reader/Null.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Unserialize/Reader/Str.php b/lib/Unserialize/Reader/Str.php index 4c234c472ce..670178f0b7d 100644 --- a/lib/Unserialize/Reader/Str.php +++ b/lib/Unserialize/Reader/Str.php @@ -6,8 +6,8 @@ * that is bundled with this package in the file LICENSE.txt. * It is also available at https://opensource.org/license/osl-3-0-php * - * @category Unserialize - * @package Unserialize_Reader + * @category Unserialize + * @package Unserialize_Reader * @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com) * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ diff --git a/lib/Varien/Filter/Template/Tokenizer/Abstract.php b/lib/Varien/Filter/Template/Tokenizer/Abstract.php index b1dfd720aa0..f7a7290f298 100644 --- a/lib/Varien/Filter/Template/Tokenizer/Abstract.php +++ b/lib/Varien/Filter/Template/Tokenizer/Abstract.php @@ -102,7 +102,8 @@ public function reset() */ public function isWhiteSpace() { - return trim($this->char()) != $this->char(); + $char = $this->char(); + return trim($char) != $char; } abstract public function tokenize();