├── .editorconfig ├── .gitignore ├── .htaccess ├── .htaccess.sample ├── .magento.app.yaml ├── .magento.env.yaml ├── .magento ├── routes.yaml └── services.yaml ├── .php-cs-fixer.dist.php ├── .user.ini ├── CHANGELOG.md ├── COPYING.txt ├── LICENSE.txt ├── LICENSE_AFL.txt ├── SECURITY.md ├── app ├── .htaccess ├── autoload.php ├── bootstrap.php ├── code │ ├── Magento │ │ └── BundleConfig │ │ │ ├── Block │ │ │ └── Html │ │ │ │ └── Head │ │ │ │ └── Config.php │ │ │ ├── Model │ │ │ └── FileManager.php │ │ │ ├── Plugin │ │ │ └── View │ │ │ │ └── Asset │ │ │ │ └── MinificationPlugin.php │ │ │ ├── etc │ │ │ ├── di.xml │ │ │ └── module.xml │ │ │ ├── registration.php │ │ │ └── view │ │ │ └── frontend │ │ │ ├── layout │ │ │ └── default.xml │ │ │ └── requirejs-config.js │ └── TheITNerd │ │ ├── Brasil │ │ ├── Api │ │ │ └── Data │ │ │ │ ├── BrazilCountyInterface.php │ │ │ │ └── BrazilCountyRepositoryInterface.php │ │ ├── Helper │ │ │ └── Address.php │ │ ├── Model │ │ │ ├── Clients │ │ │ │ └── ViaCEP │ │ │ │ │ └── ViaCEPClient.php │ │ │ ├── Data │ │ │ │ ├── BrazilCounty.php │ │ │ │ └── BrazilCountyRepository.php │ │ │ ├── Resolver │ │ │ │ └── BrazilCounties.php │ │ │ └── ResourceModel │ │ │ │ ├── BrazilCounty.php │ │ │ │ └── BrazilCounty │ │ │ │ └── Collection.php │ │ ├── Plugin │ │ │ └── Magento │ │ │ │ └── Checkout │ │ │ │ └── Block │ │ │ │ ├── Cart │ │ │ │ └── LayoutProcessorPlugin.php │ │ │ │ └── Checkout │ │ │ │ └── LayoutProcessorPlugin.php │ │ ├── README.md │ │ ├── Setup │ │ │ └── Patch │ │ │ │ └── Data │ │ │ │ ├── PopulateBrazilCountyTable.php │ │ │ │ └── UpdateAddressStreetLinesNumber.php │ │ ├── composer.json │ │ ├── etc │ │ │ ├── acl.xml │ │ │ ├── adminhtml │ │ │ │ └── system.xml │ │ │ ├── db_schema.xml │ │ │ ├── di.xml │ │ │ ├── module.xml │ │ │ └── schema.graphqls │ │ ├── registration.php │ │ └── view │ │ │ └── frontend │ │ │ ├── layout │ │ │ ├── customer_account_create.xml │ │ │ ├── customer_account_edit.xml │ │ │ └── customer_address_form.xml │ │ │ ├── requirejs-config.js │ │ │ ├── templates │ │ │ ├── Magento │ │ │ │ └── Customer │ │ │ │ │ ├── address │ │ │ │ │ └── edit.phtml │ │ │ │ │ └── form │ │ │ │ │ └── register.phtml │ │ │ └── customer │ │ │ │ ├── account │ │ │ │ ├── create │ │ │ │ │ └── masks.phtml │ │ │ │ └── masks.phtml │ │ │ │ └── address │ │ │ │ └── masks.phtml │ │ │ └── web │ │ │ ├── css │ │ │ └── source │ │ │ │ └── _module.less │ │ │ ├── js │ │ │ ├── cpfCnpjField.js │ │ │ └── validation-mixin.js │ │ │ └── template │ │ │ └── ui │ │ │ └── form │ │ │ └── element │ │ │ ├── cepInput.html │ │ │ ├── cpfCnpjInput.html │ │ │ └── telephoneInput.html │ │ ├── Core │ │ ├── Api │ │ │ ├── Adapters │ │ │ │ └── PostcodeClientInterface.php │ │ │ ├── Objects │ │ │ │ └── AddressObjectInterface.php │ │ │ └── PostcodeSearchInterface.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── Model │ │ │ ├── Adapters │ │ │ │ └── PostcodeClientAdapter.php │ │ │ ├── Api │ │ │ │ └── PostcodeSearch.php │ │ │ ├── CacheClient.php │ │ │ ├── Config │ │ │ │ └── PostcodeAdapters.php │ │ │ └── DataObjects │ │ │ │ └── AddressObject.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── etc │ │ │ ├── acl.xml │ │ │ ├── adminhtml │ │ │ │ ├── menu.xml │ │ │ │ └── system.xml │ │ │ ├── di.xml │ │ │ ├── module.xml │ │ │ └── webapi.xml │ │ ├── registration.php │ │ └── view │ │ │ ├── adminhtml │ │ │ └── web │ │ │ │ ├── css │ │ │ │ └── source │ │ │ │ │ └── _module.less │ │ │ │ └── fonts │ │ │ │ ├── theitnerd.eot │ │ │ │ ├── theitnerd.svg │ │ │ │ ├── theitnerd.ttf │ │ │ │ └── theitnerd.woff │ │ │ └── frontend │ │ │ ├── layout │ │ │ └── default.xml │ │ │ ├── templates │ │ │ └── checkout │ │ │ │ └── regionJson.phtml │ │ │ └── web │ │ │ ├── css │ │ │ └── source │ │ │ │ └── _module.less │ │ │ ├── js │ │ │ ├── inputMask.js │ │ │ ├── lib │ │ │ │ ├── jquery.mask.js │ │ │ │ └── postcode.js │ │ │ ├── model │ │ │ │ └── postcode.js │ │ │ ├── postcode.js │ │ │ └── view │ │ │ │ └── postcodeSearch.js │ │ │ └── template │ │ │ └── postcode-search │ │ │ └── postcodeSearch.html │ │ ├── EAV │ │ ├── Model │ │ │ ├── AbstractModel.php │ │ │ ├── EntityUseDefault.php │ │ │ └── ResourceModel │ │ │ │ └── Attribute │ │ │ │ └── Collection.php │ │ ├── Ui │ │ │ └── DataProvider │ │ │ │ └── Form │ │ │ │ └── Modifier │ │ │ │ └── Eav.php │ │ ├── composer.json │ │ ├── etc │ │ │ ├── di.xml │ │ │ └── module.xml │ │ └── registration.php │ │ ├── Performance │ │ ├── Helper │ │ │ └── Config.php │ │ ├── Plugin │ │ │ └── HttpResponsePlugin.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── etc │ │ │ ├── acl.xml │ │ │ ├── adminhtml │ │ │ │ └── system.xml │ │ │ ├── config.xml │ │ │ ├── frontend │ │ │ │ └── di.xml │ │ │ └── module.xml │ │ └── registration.php │ │ ├── SizeGuide │ │ ├── Api │ │ │ ├── Data │ │ │ │ ├── SizeGuideInterface.php │ │ │ │ └── SizeGuideSearchResultsInterface.php │ │ │ └── SizeGuideRepositoryInterface.php │ │ ├── Block │ │ │ ├── Adminhtml │ │ │ │ └── SizeGuide │ │ │ │ │ └── Edit │ │ │ │ │ ├── BackButton.php │ │ │ │ │ ├── DeleteButton.php │ │ │ │ │ ├── GenericButton.php │ │ │ │ │ ├── SaveAndContinueButton.php │ │ │ │ │ └── SaveButton.php │ │ │ └── Catalog │ │ │ │ └── Product │ │ │ │ └── View │ │ │ │ └── SizeGuide.php │ │ ├── COPYING.txt │ │ ├── Controller │ │ │ └── Adminhtml │ │ │ │ ├── SizeGuide.php │ │ │ │ └── SizeGuide │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Index.php │ │ │ │ ├── InlineEdit.php │ │ │ │ ├── NewAction.php │ │ │ │ ├── Save.php │ │ │ │ └── Upload.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── LICENSE.txt │ │ ├── Model │ │ │ ├── Data │ │ │ │ └── SizeGuide.php │ │ │ ├── Product │ │ │ │ └── Attribute │ │ │ │ │ └── Source │ │ │ │ │ └── SizeGuide.php │ │ │ ├── ResourceModel │ │ │ │ ├── SizeGuide.php │ │ │ │ └── SizeGuide │ │ │ │ │ ├── Collection.php │ │ │ │ │ └── Grid │ │ │ │ │ └── Collection.php │ │ │ ├── SizeGuide.php │ │ │ ├── SizeGuide │ │ │ │ ├── Attribute │ │ │ │ │ └── Backend │ │ │ │ │ │ └── Image.php │ │ │ │ ├── DataProvider.php │ │ │ │ └── Image.php │ │ │ └── SizeGuideRepository.php │ │ ├── README.md │ │ ├── Setup │ │ │ ├── Patch │ │ │ │ └── Data │ │ │ │ │ ├── AddConfigurationSizeGuideAttribute.php │ │ │ │ │ ├── AddDescriptionSizeGuideAttribute.php │ │ │ │ │ ├── AddImageSizeGuideAttribute.php │ │ │ │ │ ├── AddNameSizeGuideAttribute.php │ │ │ │ │ ├── AddSizeGuideProductAttribute.php │ │ │ │ │ └── DefaultSizeGuideEntity.php │ │ │ └── SizeGuideSetup.php │ │ ├── Ui │ │ │ └── Component │ │ │ │ ├── DataProvider │ │ │ │ └── Document.php │ │ │ │ └── Listing │ │ │ │ ├── Column │ │ │ │ └── SizeGuideActions.php │ │ │ │ └── DataProvider.php │ │ ├── composer.json │ │ ├── etc │ │ │ ├── acl.xml │ │ │ ├── adminhtml │ │ │ │ ├── di.xml │ │ │ │ ├── menu.xml │ │ │ │ └── routes.xml │ │ │ ├── db_schema.xml │ │ │ ├── di.xml │ │ │ ├── module.xml │ │ │ └── webapi.xml │ │ ├── registration.php │ │ ├── todo.md │ │ └── view │ │ │ ├── adminhtml │ │ │ ├── layout │ │ │ │ ├── theitnerd_sizeguide_sizeguide_edit.xml │ │ │ │ ├── theitnerd_sizeguide_sizeguide_index.xml │ │ │ │ └── theitnerd_sizeguide_sizeguide_new.xml │ │ │ └── ui_component │ │ │ │ ├── theitnerd_sizeguide_entity_form.xml │ │ │ │ └── theitnerd_sizeguide_entity_listing.xml │ │ │ └── frontend │ │ │ ├── layout │ │ │ └── catalog_product_view.xml │ │ │ ├── templates │ │ │ └── product │ │ │ │ └── view │ │ │ │ └── sizeguide.phtml │ │ │ └── web │ │ │ └── css │ │ │ └── source │ │ │ └── _module.less │ │ ├── SocialLogin │ │ ├── Api │ │ │ └── OauthInterface.php │ │ ├── Controller │ │ │ └── Auth │ │ │ │ └── Callback.php │ │ ├── Helper │ │ │ └── Config.php │ │ ├── Model │ │ │ ├── OAuth.php │ │ │ └── OAuth │ │ │ │ ├── Facebook.php │ │ │ │ └── Google.php │ │ ├── Plugin │ │ │ └── Magento │ │ │ │ └── Checkout │ │ │ │ └── Block │ │ │ │ └── Checkout │ │ │ │ └── LayoutProcessorPlugin.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── etc │ │ │ ├── acl.xml │ │ │ ├── adminhtml │ │ │ │ └── system.xml │ │ │ ├── config.xml │ │ │ ├── di.xml │ │ │ ├── frontend │ │ │ │ └── routes.xml │ │ │ └── module.xml │ │ ├── registration.php │ │ └── view │ │ │ └── frontend │ │ │ ├── layout │ │ │ ├── customer_account_create.xml │ │ │ ├── customer_account_login.xml │ │ │ └── default.xml │ │ │ ├── templates │ │ │ └── oauth │ │ │ │ ├── login.phtml │ │ │ │ └── sdks.phtml │ │ │ └── web │ │ │ ├── css │ │ │ └── source │ │ │ │ └── _module.less │ │ │ ├── js │ │ │ └── view │ │ │ │ └── socialLogin.js │ │ │ └── template │ │ │ └── authentication-popup-buttons.html │ │ └── UX │ │ ├── Api │ │ └── PDPEstimateShippingMethodsInterface.php │ │ ├── Block │ │ └── Product │ │ │ ├── PriceInfo.php │ │ │ └── PriceInfoPDP.php │ │ ├── Helper │ │ ├── Customer.php │ │ ├── Gallery.php │ │ ├── Product.php │ │ └── Social.php │ │ ├── Model │ │ ├── Api │ │ │ └── PDPEstimateShippingMethods.php │ │ └── Config │ │ │ └── Source │ │ │ ├── LinkType.php │ │ │ └── Magnifier │ │ │ ├── EventType.php │ │ │ └── Mode.php │ │ ├── Plugin │ │ └── Magento │ │ │ └── Catalog │ │ │ └── ProductGalleryConfigurationsPlugin.php │ │ ├── README.md │ │ ├── Rewrite │ │ └── Magento │ │ │ ├── Catalog │ │ │ └── Block │ │ │ │ └── Product │ │ │ │ ├── ImageFactory.php │ │ │ │ ├── ListProduct.php │ │ │ │ └── ProductList │ │ │ │ └── Related.php │ │ │ └── Wishlist │ │ │ ├── Controller │ │ │ └── Index │ │ │ │ └── Remove.php │ │ │ └── CustomerData │ │ │ └── Wishlist.php │ │ ├── composer.json │ │ ├── etc │ │ ├── acl.xml │ │ ├── adminhtml │ │ │ └── system.xml │ │ ├── config.xml │ │ ├── di.xml │ │ ├── module.xml │ │ └── webapi.xml │ │ ├── registration.php │ │ └── view │ │ └── frontend │ │ ├── layout │ │ ├── catalog_product_view.xml │ │ └── default.xml │ │ ├── requirejs-config.js │ │ ├── templates │ │ └── Magento │ │ │ ├── Catalog │ │ │ └── product │ │ │ │ ├── image_with_borders.phtml │ │ │ │ ├── list │ │ │ │ └── related.phtml │ │ │ │ └── view │ │ │ │ ├── addto │ │ │ │ └── social.phtml │ │ │ │ ├── addtocartQty.phtml │ │ │ │ ├── estimate-shipping-methods.phtml │ │ │ │ ├── priceInfo │ │ │ │ ├── pdp.phtml │ │ │ │ └── plp.phtml │ │ │ │ └── priceInfoPDP.phtml │ │ │ └── Wishlist │ │ │ └── jsLib.phtml │ │ └── web │ │ ├── css │ │ └── source │ │ │ ├── _module.less │ │ │ └── variables │ │ │ └── _icons.less │ │ ├── fonts │ │ ├── social_icons.eot │ │ ├── social_icons.svg │ │ ├── social_icons.ttf │ │ ├── social_icons.woff │ │ └── social_icons.woff2 │ │ ├── js │ │ ├── model │ │ │ └── estimated-shipping-methods.js │ │ ├── product │ │ │ ├── estimateShippingMethodsForm.js │ │ │ ├── relatedButton.js │ │ │ ├── secondImage.js │ │ │ └── swatch-renderer-mixin.js │ │ ├── qtyButtons.js │ │ ├── view │ │ │ └── estimated-shipping-rates.js │ │ └── wishlist │ │ │ └── productWishlistIcon.js │ │ └── template │ │ └── product │ │ └── estimated-shipping-rates.html ├── etc │ └── config.php └── i18n │ └── origenes │ └── pt_br │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── github_contributions.csv │ ├── language.xml │ ├── pt_BR.csv │ └── registration.php ├── auth.json.sample ├── composer.json ├── composer.lock ├── dev ├── .htaccess ├── tests │ ├── .gitignore │ ├── acceptance │ │ ├── .gitignore │ │ ├── .htaccess.sample │ │ ├── staticRuleset.json │ │ └── tests │ │ │ ├── _bootstrap.php │ │ │ ├── _data │ │ │ ├── BB-Products.csv │ │ │ ├── BB-ProductsWorking.csv │ │ │ ├── COLUMNS_Desktop_background_100x100px.png │ │ │ ├── COLUMNS_Mobile_background_100x100px.png │ │ │ ├── COLUMN_1_Desktop_background_100x100px.png │ │ │ ├── COLUMN_2_Mobile_background_100x100px.png │ │ │ ├── LargerThan2MB.jpg │ │ │ ├── adobe-base-image-long-name-image-long-name-image-long-name-image-long-name-image-long-name-image-long-name-image-long-name-image-long-name-image-long-name.jpg │ │ │ ├── adobe-base.jpg │ │ │ ├── adobe-small.jpg │ │ │ ├── adobe-thumb.jpg │ │ │ ├── bmp.bmp │ │ │ ├── catalog_import_products.csv │ │ │ ├── catalog_import_products_url_rewrite.csv │ │ │ ├── catalog_product_err_img.csv │ │ │ ├── catalog_product_import_bundle.csv │ │ │ ├── catalog_products.csv │ │ │ ├── dump.sql │ │ │ ├── empty.jpg │ │ │ ├── export_import_configurable_product.csv │ │ │ ├── gif.gif │ │ │ ├── ico.ico │ │ │ ├── importSpecChars.csv │ │ │ ├── import_bundle_product.csv │ │ │ ├── import_configurable_product.csv │ │ │ ├── import_configurable_product_same_images.csv │ │ │ ├── import_downloadable_product_file_links.csv │ │ │ ├── import_downloadable_product_url_links.csv │ │ │ ├── import_grouped_product.csv │ │ │ ├── import_productsoftwostoresdata.csv │ │ │ ├── import_simple_product.csv │ │ │ ├── import_simple_product_with_image.csv │ │ │ ├── import_simple_product_with_image_long_name.csv │ │ │ ├── import_tax_rates.csv │ │ │ ├── import_updated.csv │ │ │ ├── jpg.jpg │ │ │ ├── large.jpg │ │ │ ├── lorem_ipsum.docx │ │ │ ├── lorem_ipsum.txt │ │ │ ├── m-logo.gif │ │ │ ├── m.agento-logo.png │ │ │ ├── magento-again.jpg │ │ │ ├── magento-logo.png │ │ │ ├── magento-logo_2.png │ │ │ ├── magento.jpg │ │ │ ├── magento2.jpg │ │ │ ├── magento3.jpg │ │ │ ├── magentoStage.jpg │ │ │ ├── medium.jpg │ │ │ ├── not-a.png │ │ │ ├── png.png │ │ │ ├── prepared-for-sample-data.csv │ │ │ ├── simpleProductUpdate.csv │ │ │ ├── small.jpg │ │ │ ├── svg.svg │ │ │ ├── table_rate_30895.csv │ │ │ ├── tablerates.csv │ │ │ ├── test-IMAGE_123,456.789.jpg │ │ │ └── usa_tablerates.csv │ │ │ ├── _suite │ │ │ └── suite.xml.sample │ │ │ └── functional │ │ │ └── Magento │ │ │ ├── ConfigurableProductCatalogSearch │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE_AFL.txt │ │ │ ├── README.md │ │ │ ├── Test │ │ │ │ ├── EndToEndB2CGuestUserTest │ │ │ │ │ └── EndToEndB2CGuestUserTest.xml │ │ │ │ └── EndToEndB2CLoggedInUserTest.xml │ │ │ ├── composer.json │ │ │ └── etc │ │ │ │ └── csp_whitelist.xml │ │ │ └── ConfigurableProductWishlist │ │ │ ├── ActionGroup │ │ │ ├── StorefrontCustomerCheckConfigurableProductInWishlistActionGroup.xml │ │ │ └── StorefrontCustomerCheckConfigurableProductInWishlistSidebarActionGroup.xml │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE_AFL.txt │ │ │ ├── README.md │ │ │ ├── Test │ │ │ └── EndToEndB2CLoggedInUserTest.xml │ │ │ └── composer.json │ ├── api-functional │ │ ├── .gitignore │ │ ├── _files │ │ │ └── Magento │ │ │ │ ├── TestModule1 │ │ │ │ ├── Controller │ │ │ │ │ ├── CookieTester.php │ │ │ │ │ └── CookieTester │ │ │ │ │ │ ├── DeleteCookie.php │ │ │ │ │ │ ├── SetPublicCookie.php │ │ │ │ │ │ └── SetSensitiveCookie.php │ │ │ │ ├── Service │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ └── Entity │ │ │ │ │ │ └── Item.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ ├── frontend │ │ │ │ │ │ └── routes.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModule2 │ │ │ │ ├── Service │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ └── Item.php │ │ │ │ │ │ ├── NoWebApiXml.php │ │ │ │ │ │ ├── NoWebApiXmlInterface.php │ │ │ │ │ │ ├── SubsetRest.php │ │ │ │ │ │ └── SubsetRestInterface.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── AllSoapNoRestV1.xsd │ │ │ │ │ │ ├── NoWebApiXmlV1.xsd │ │ │ │ │ │ └── SubsetRestV1.xsd │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModule3 │ │ │ │ ├── Service │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ ├── Parameter.php │ │ │ │ │ │ └── WrappedErrorParameter.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ └── ErrorInterface.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModule4 │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Item.php │ │ │ │ ├── Service │ │ │ │ │ └── V1 │ │ │ │ │ │ ├── DataObjectService.php │ │ │ │ │ │ ├── DataObjectServiceInterface.php │ │ │ │ │ │ └── Entity │ │ │ │ │ │ ├── DataObjectRequest.php │ │ │ │ │ │ ├── DataObjectResponse.php │ │ │ │ │ │ ├── ExtensibleRequest.php │ │ │ │ │ │ ├── ExtensibleRequestInterface.php │ │ │ │ │ │ └── NestedDataObjectRequest.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModule5 │ │ │ │ ├── Service │ │ │ │ │ ├── V1 │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── AllSoapAndRest.php │ │ │ │ │ │ ├── OverrideService.php │ │ │ │ │ │ └── OverrideServiceInterface.php │ │ │ │ │ └── V2 │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ └── Entity │ │ │ │ │ │ └── AllSoapAndRest.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCatalogSearch │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleDefaultHydrator │ │ │ │ ├── Api │ │ │ │ │ ├── CustomerPersistenceInterface.php │ │ │ │ │ └── Data │ │ │ │ │ │ └── ExtensionAttributeInterface.php │ │ │ │ ├── Model │ │ │ │ │ ├── Address │ │ │ │ │ │ └── Mapper.php │ │ │ │ │ ├── CustomerPersistence.php │ │ │ │ │ ├── Data │ │ │ │ │ │ └── ExtensionAttribute.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── ReadHandler.php │ │ │ │ │ │ └── SaveHandler.php │ │ │ │ │ │ ├── ReadHandler.php │ │ │ │ │ │ └── SaveHandler.php │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleFedex │ │ │ │ ├── Model │ │ │ │ │ ├── MockResponseBodyLoader.php │ │ │ │ │ ├── MockSoapClient.php │ │ │ │ │ └── MockSoapClientFactory.php │ │ │ │ ├── _files │ │ │ │ │ ├── mock_response_general_ca.json │ │ │ │ │ ├── mock_response_general_us.json │ │ │ │ │ ├── mock_response_smart_post_ca.json │ │ │ │ │ └── mock_response_smart_post_us.json │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleGraphQlQuery │ │ │ │ ├── Model │ │ │ │ │ └── Resolver │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ ├── TestUnion.php │ │ │ │ │ │ └── UnionTypeResolver.php │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── schema.graphqls │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleGraphQlQueryExtension │ │ │ │ ├── Model │ │ │ │ │ └── Resolver │ │ │ │ │ │ └── IntegerList.php │ │ │ │ ├── etc │ │ │ │ │ ├── module.xml │ │ │ │ │ └── schema.graphqls │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleIntegrationFromConfig │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── integration.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleJoinDirectives │ │ │ │ ├── Api │ │ │ │ │ └── TestRepositoryInterface.php │ │ │ │ ├── Model │ │ │ │ │ └── TestRepository.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleMSC │ │ │ │ ├── Api │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ └── Data │ │ │ │ │ │ ├── CustomAttributeDataObjectInterface.php │ │ │ │ │ │ ├── CustomAttributeNestedDataObjectInterface.php │ │ │ │ │ │ └── ItemInterface.php │ │ │ │ ├── Model │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── CustomAttributeDataObject.php │ │ │ │ │ │ ├── CustomAttributeNestedDataObject.php │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ └── AttributeMetadata.php │ │ │ │ │ │ └── Item.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Item.php │ │ │ │ ├── etc │ │ │ │ │ ├── acl.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ └── webapi.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ ├── Model │ │ │ │ │ └── FixtureCallStorage.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ │ ├── config.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ ├── Test │ │ │ │ │ └── Api │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── overrides.xml │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ ├── Test │ │ │ │ │ └── Api │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── overrides.xml │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleUps │ │ │ │ ├── Model │ │ │ │ │ ├── Carrier.php │ │ │ │ │ └── MockResponseBodyLoader.php │ │ │ │ ├── _files │ │ │ │ │ ├── mock_response_ca.txt │ │ │ │ │ └── mock_response_us.txt │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ └── TestModuleUsps │ │ │ │ ├── Model │ │ │ │ ├── MockAsyncClient.php │ │ │ │ ├── MockDeferredResponse.php │ │ │ │ └── MockResponseBodyLoader.php │ │ │ │ ├── _files │ │ │ │ ├── mock_response_ca.xml │ │ │ │ └── mock_response_us.xml │ │ │ │ ├── etc │ │ │ │ ├── di.xml │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ ├── allure │ │ │ └── allure.config.php │ │ ├── config │ │ │ ├── config-global.php.dist │ │ │ ├── install-config-mysql.php.dist │ │ │ └── post-install-setup-command-config.php.dist │ │ ├── framework │ │ │ ├── Magento │ │ │ │ └── TestFramework │ │ │ │ │ ├── Annotation │ │ │ │ │ ├── ApiConfigFixture.php │ │ │ │ │ └── ApiDataFixture.php │ │ │ │ │ ├── ApiSuiteLoader.php │ │ │ │ │ ├── App │ │ │ │ │ └── ApiMutableScopeConfig.php │ │ │ │ │ ├── Assert │ │ │ │ │ └── AssertArrayContains.php │ │ │ │ │ ├── Authentication │ │ │ │ │ ├── OauthHelper.php │ │ │ │ │ └── Rest │ │ │ │ │ │ ├── CurlClient.php │ │ │ │ │ │ ├── OauthClient.php │ │ │ │ │ │ └── OauthClient │ │ │ │ │ │ └── Signature.php │ │ │ │ │ ├── Bootstrap │ │ │ │ │ └── WebapiDocBlock.php │ │ │ │ │ ├── Helper │ │ │ │ │ ├── CompareArraysRecursively.php │ │ │ │ │ ├── Customer.php │ │ │ │ │ └── JsonSerializer.php │ │ │ │ │ ├── TestCase │ │ │ │ │ ├── GraphQl │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ └── ResponseContainsErrorsException.php │ │ │ │ │ ├── GraphQlAbstract.php │ │ │ │ │ ├── HttpClient │ │ │ │ │ │ ├── CurlClient.php │ │ │ │ │ │ └── CurlClientWithCookies.php │ │ │ │ │ ├── Webapi │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── Rest.php │ │ │ │ │ │ │ ├── Rest │ │ │ │ │ │ │ │ ├── DocumentationGenerator.php │ │ │ │ │ │ │ │ └── RestClient.php │ │ │ │ │ │ │ └── Soap.php │ │ │ │ │ │ └── AdapterInterface.php │ │ │ │ │ └── WebapiAbstract.php │ │ │ │ │ ├── WebApiApplication.php │ │ │ │ │ └── WebapiWorkaround │ │ │ │ │ ├── Override │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Converter.php │ │ │ │ │ │ ├── FileCollector.php │ │ │ │ │ │ └── SchemaLocator.php │ │ │ │ │ └── Fixture │ │ │ │ │ │ └── Resolver.php │ │ │ │ │ └── etc │ │ │ │ │ └── overrides.xsd │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ │ ├── isolate_gql.txt │ │ ├── isolate_rest.txt │ │ ├── phpunit_graphql.xml.dist │ │ ├── phpunit_rest.xml.dist │ │ ├── phpunit_soap.xml.dist │ │ └── testsuite │ │ │ └── Magento │ │ │ ├── Analytics │ │ │ └── Api │ │ │ │ └── LinkProviderTest.php │ │ │ ├── AsynchronousOperations │ │ │ └── Api │ │ │ │ ├── BulkStatusInterfaceTest.php │ │ │ │ └── OperationRepositoryInterfaceTest.php │ │ │ ├── Bundle │ │ │ └── Api │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── OrderInvoiceCreateTest.php │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ ├── ProductLinkManagementTest.php │ │ │ │ ├── ProductOptionRepositoryTest.php │ │ │ │ ├── ProductOptionTypeListTest.php │ │ │ │ └── ProductServiceTest.php │ │ │ ├── Catalog │ │ │ └── Api │ │ │ │ ├── AttributeSetManagementTest.php │ │ │ │ ├── AttributeSetRepositoryTest.php │ │ │ │ ├── BasePriceStorageTest.php │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── CategoryAttributeOptionManagementInterfaceTest.php │ │ │ │ ├── CategoryAttributeRepositoryTest.php │ │ │ │ ├── CategoryLinkManagementTest.php │ │ │ │ ├── CategoryLinkRepositoryTest.php │ │ │ │ ├── CategoryListTest.php │ │ │ │ ├── CategoryManagementTest.php │ │ │ │ ├── CategoryRepositoryTest.php │ │ │ │ ├── CostStorageTest.php │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ ├── ProductAttributeGroupRepositoryTest.php │ │ │ │ ├── ProductAttributeManagementTest.php │ │ │ │ ├── ProductAttributeMediaGalleryManagementInterfaceTest.php │ │ │ │ ├── ProductAttributeOptionManagementInterfaceTest.php │ │ │ │ ├── ProductAttributeOptionUpdateInterfaceTest.php │ │ │ │ ├── ProductAttributeRepositoryTest.php │ │ │ │ ├── ProductAttributeTypesListTest.php │ │ │ │ ├── ProductCustomAttributeWrongTypeTest.php │ │ │ │ ├── ProductCustomOptionRepositoryTest.php │ │ │ │ ├── ProductCustomOptionTypeListTest.php │ │ │ │ ├── ProductLinkManagementInterfaceTest.php │ │ │ │ ├── ProductLinkRepositoryInterfaceTest.php │ │ │ │ ├── ProductLinkTypeListTest.php │ │ │ │ ├── ProductMediaAttributeManagementTest.php │ │ │ │ ├── ProductRenderListInterfaceTest.php │ │ │ │ ├── ProductRepositoryAllStoreViewsTest.php │ │ │ │ ├── ProductRepositoryInterfaceTest.php │ │ │ │ ├── ProductRepositoryMultiCurrencyTest.php │ │ │ │ ├── ProductRepositoryMultiStoreTest.php │ │ │ │ ├── ProductRepositoryMultiWebsiteTest.php │ │ │ │ ├── ProductRepositoryPriceModeWebsiteChangePriceTest.php │ │ │ │ ├── ProductSwatchAttributeOptionManagementInterfaceTest.php │ │ │ │ ├── ProductTierPriceManagementTest.php │ │ │ │ ├── ProductTypeListTest.php │ │ │ │ ├── ProductWebsiteLinkRepositoryTest.php │ │ │ │ ├── SpecialPriceStorageTest.php │ │ │ │ ├── TierPriceStorageTest.php │ │ │ │ └── _files │ │ │ │ ├── product_options.php │ │ │ │ ├── product_options_negative.php │ │ │ │ ├── product_options_update_negative.php │ │ │ │ └── test_image.jpg │ │ │ ├── CatalogInventory │ │ │ └── Api │ │ │ │ ├── LowStockItemsTest.php │ │ │ │ ├── ProductRepositoryInterfaceTest.php │ │ │ │ ├── StockItemTest.php │ │ │ │ └── StockStatusTest.php │ │ │ ├── CheckoutAgreements │ │ │ └── Api │ │ │ │ ├── CheckoutAgreementsListTest.php │ │ │ │ └── CheckoutAgreementsRepositoryTest.php │ │ │ ├── Cms │ │ │ └── Api │ │ │ │ ├── BlockRepositoryTest.php │ │ │ │ └── PageRepositoryTest.php │ │ │ ├── ConfigurableProduct │ │ │ └── Api │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── ConfigurableProductManagementTest.php │ │ │ │ ├── LinkManagementTest.php │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ └── ProductRepositoryTest.php │ │ │ ├── Customer │ │ │ └── Api │ │ │ │ ├── AccountManagementCustomAttributesTest.php │ │ │ │ ├── AccountManagementMeTest.php │ │ │ │ ├── AccountManagementRevokeCustomerTokenTest.php │ │ │ │ ├── AccountManagementTest.php │ │ │ │ ├── AddressMetadataTest.php │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ ├── CustomerGroupConfigTest.php │ │ │ │ ├── CustomerMetadataTest.php │ │ │ │ ├── CustomerRepositoryTest.php │ │ │ │ ├── CustomerSharingOptionsTest.php │ │ │ │ ├── GroupManagementTest.php │ │ │ │ ├── GroupRepositoryTest.php │ │ │ │ └── _files │ │ │ │ ├── buttons.png │ │ │ │ └── test_image.jpg │ │ │ ├── Directory │ │ │ └── Api │ │ │ │ ├── CountryInformationAcquirerTest.php │ │ │ │ └── CurrencyInformationAcquirerTest.php │ │ │ ├── Downloadable │ │ │ └── Api │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── LinkRepositoryTest.php │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ ├── ProductRepositoryTest.php │ │ │ │ ├── SampleRepositoryTest.php │ │ │ │ └── _files │ │ │ │ └── test_image.jpg │ │ │ ├── Eav │ │ │ └── Api │ │ │ │ ├── AttributeSetManagementTest.php │ │ │ │ └── AttributeSetRepositoryTest.php │ │ │ ├── Framework │ │ │ ├── Api │ │ │ │ └── Search │ │ │ │ │ └── SearchTest.php │ │ │ ├── Model │ │ │ │ └── Entity │ │ │ │ │ └── HydratorTest.php │ │ │ └── Stdlib │ │ │ │ └── CookieManagerTest.php │ │ │ ├── GiftMessage │ │ │ └── Api │ │ │ │ ├── CartRepositoryTest.php │ │ │ │ ├── GuestCartRepositoryTest.php │ │ │ │ ├── GuestItemRepositoryTest.php │ │ │ │ ├── ItemRepositoryTest.php │ │ │ │ ├── OrderGetRepositoryTest.php │ │ │ │ └── OrderItemGetRepositoryTest.php │ │ │ ├── GraphQl │ │ │ ├── Bundle │ │ │ │ ├── AddBundleProductToCartSingleMutationTest.php │ │ │ │ ├── AddBundleProductToCartTest.php │ │ │ │ ├── BundleProductMultipleOptionsTest.php │ │ │ │ ├── BundleProductViewTest.php │ │ │ │ └── BundleProductWithDisabledProductTest.php │ │ │ ├── Catalog │ │ │ │ ├── CategoriesQuery │ │ │ │ │ ├── CategoriesFilterTest.php │ │ │ │ │ ├── CategoriesPaginationTest.php │ │ │ │ │ ├── CategoryAggregationsTest.php │ │ │ │ │ └── CategoryTreeTest.php │ │ │ │ ├── CategoryAnchorTest.php │ │ │ │ ├── CategoryCanonicalUrlTest.php │ │ │ │ ├── CategoryEnabledTest.php │ │ │ │ ├── CategoryListTest.php │ │ │ │ ├── CategoryProductsCountTest.php │ │ │ │ ├── CategoryProductsVariantsTest.php │ │ │ │ ├── CategorySpecificFieldsTest.php │ │ │ │ ├── CategoryTest.php │ │ │ │ ├── CategoryWithDescriptionDirectivesTest.php │ │ │ │ ├── ExceptionFormatterDefaultModeTest.php │ │ │ │ ├── MediaGalleryTest.php │ │ │ │ ├── Options │ │ │ │ │ ├── CustomizableOptionsTest.php │ │ │ │ │ └── Uid │ │ │ │ │ │ └── CustomizableOptionsUidTest.php │ │ │ │ ├── Product │ │ │ │ │ └── ProductCategoriesTest.php │ │ │ │ ├── ProductAttributeOptionsTest.php │ │ │ │ ├── ProductAttributeStoreOptionsTest.php │ │ │ │ ├── ProductAttributeStoreTest.php │ │ │ │ ├── ProductAttributeTypeTest.php │ │ │ │ ├── ProductCanonicalUrlTest.php │ │ │ │ ├── ProductDeleteTest.php │ │ │ │ ├── ProductFragmentTest.php │ │ │ │ ├── ProductImageTest.php │ │ │ │ ├── ProductInMultipleStoresTest.php │ │ │ │ ├── ProductPriceTest.php │ │ │ │ ├── ProductSearchAggregationsTest.php │ │ │ │ ├── ProductSearchCategoryAggregationsTest.php │ │ │ │ ├── ProductSearchPriceFilterTest.php │ │ │ │ ├── ProductSearchTest.php │ │ │ │ ├── ProductSearchWithTranslatedMessageTest.php │ │ │ │ ├── ProductTextAttributesTest.php │ │ │ │ ├── ProductViewTest.php │ │ │ │ ├── ReadCategoryAfterDeleteTest.php │ │ │ │ ├── StoreConfigTest.php │ │ │ │ ├── UrlRewritesTest.php │ │ │ │ └── VirtualProductViewTest.php │ │ │ ├── CatalogCms │ │ │ │ └── CategoryBlockTest.php │ │ │ ├── CatalogCustomer │ │ │ │ ├── PriceTiersTest.php │ │ │ │ ├── SpecialPriceTest.php │ │ │ │ ├── TierPricesForCustomersTest.php │ │ │ │ └── TierPricesForGuestsTest.php │ │ │ ├── CatalogGraphQl │ │ │ │ ├── CategoryTest.php │ │ │ │ ├── PriceAttributeOptionsLabelTranslateTest.php │ │ │ │ ├── PriceRangeTest.php │ │ │ │ └── ProductSearchTest.php │ │ │ ├── CatalogInventory │ │ │ │ ├── AddProductToCartTest.php │ │ │ │ ├── ProductOnlyXLeftInStockTest.php │ │ │ │ ├── ProductStockStatusTest.php │ │ │ │ └── UpdateCartItemsTest.php │ │ │ ├── CatalogUrlRewrite │ │ │ │ ├── RouteTest.php │ │ │ │ └── UrlResolverTest.php │ │ │ ├── CheckoutAgreements │ │ │ │ └── GetCheckoutAgreementsTest.php │ │ │ ├── Cms │ │ │ │ ├── CmsBlockTest.php │ │ │ │ └── CmsPageTest.php │ │ │ ├── CmsUrlRewrite │ │ │ │ ├── RouteTest.php │ │ │ │ └── UrlResolverTest.php │ │ │ ├── CompareList │ │ │ │ └── CompareListTest.php │ │ │ ├── ConfigurableProduct │ │ │ │ ├── AddConfigurableProductToCartSingleMutationTest.php │ │ │ │ ├── AddConfigurableProductToCartTest.php │ │ │ │ ├── AddConfigurableProductsWithDifferentParentsToCartTest.php │ │ │ │ ├── ConfigurableOptionsSelectionMetadataTest.php │ │ │ │ ├── ConfigurableOptionsSelectionTest.php │ │ │ │ ├── ConfigurableProductChildStatusDisabledTest.php │ │ │ │ ├── ConfigurableProductFrontendLabelAttributeTest.php │ │ │ │ ├── ConfigurableProductMultipleStoreViewTest.php │ │ │ │ ├── ConfigurableProductOptionsTest.php │ │ │ │ ├── ConfigurableProductPriceRangeWithDisabledChildProductsTest.php │ │ │ │ ├── ConfigurableProductQueryTest.php │ │ │ │ ├── ConfigurableProductStockStatusTest.php │ │ │ │ ├── ConfigurableProductViewTest.php │ │ │ │ ├── Options │ │ │ │ │ └── Uid │ │ │ │ │ │ └── CustomizableValueUidTest.php │ │ │ │ ├── RemoveConfigurableProductFromCartTest.php │ │ │ │ ├── StoreConfigTest.php │ │ │ │ └── UpdateConfigurableCartItemsTest.php │ │ │ ├── Customer │ │ │ │ ├── ChangeCustomerPasswordTest.php │ │ │ │ ├── CreateCustomerAddressTest.php │ │ │ │ ├── CreateCustomerTest.php │ │ │ │ ├── CreateCustomerV2Test.php │ │ │ │ ├── DeleteCustomerAddressTest.php │ │ │ │ ├── DeleteCustomerTest.php │ │ │ │ ├── GenerateCustomerTokenTest.php │ │ │ │ ├── GetAddressesTest.php │ │ │ │ ├── GetCustomerTest.php │ │ │ │ ├── IsEmailAvailableTest.php │ │ │ │ ├── LockCustomer.php │ │ │ │ ├── RequestPasswordResetEmailTest.php │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ ├── RevokeCustomerTokenTest.php │ │ │ │ ├── StoreConfigTest.php │ │ │ │ ├── SubscriptionStatusTest.php │ │ │ │ ├── UpdateCustomerAddressTest.php │ │ │ │ ├── UpdateCustomerEmailTest.php │ │ │ │ ├── UpdateCustomerTest.php │ │ │ │ └── UpdateCustomerV2Test.php │ │ │ ├── CustomerDownloadableProduct │ │ │ │ └── CustomerDownloadableProductTest.php │ │ │ ├── Directory │ │ │ │ ├── CountriesTest.php │ │ │ │ ├── CountryTest.php │ │ │ │ └── CurrencyTest.php │ │ │ ├── DownloadableProduct │ │ │ │ ├── AddDownloadableProductToCartTest.php │ │ │ │ ├── DownloadableProductViewTest.php │ │ │ │ ├── Options │ │ │ │ │ └── Uid │ │ │ │ │ │ └── DownloadableLinksValueUidTest.php │ │ │ │ └── UpdateDownloadableCartItemsTest.php │ │ │ ├── FedEx │ │ │ │ └── SetFedExShippingMethodsOnCartTest.php │ │ │ ├── Framework │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ ├── QueryComplexityLimiterTest.php │ │ │ │ └── RequiredInputArgumentTest.php │ │ │ ├── GetCustomerAuthenticationHeader.php │ │ │ ├── GiftMessage │ │ │ │ ├── Cart │ │ │ │ │ ├── GiftMessageTest.php │ │ │ │ │ └── Item │ │ │ │ │ │ └── GiftMessageTest.php │ │ │ │ └── Order │ │ │ │ │ ├── GiftMessageTest.php │ │ │ │ │ └── Item │ │ │ │ │ └── GiftMessageTest.php │ │ │ ├── GraphQl │ │ │ │ └── GraphQlSessionTest.php │ │ │ ├── GraphQlCache │ │ │ │ └── CacheIdFactorProviders │ │ │ │ │ ├── Customer │ │ │ │ │ ├── CustomerGroupProviderTest.php │ │ │ │ │ ├── CustomerTaxRateProviderTest.php │ │ │ │ │ └── IsLoggedInProviderTest.php │ │ │ │ │ └── Store │ │ │ │ │ ├── CurrencyProviderTest.php │ │ │ │ │ └── StoreProviderTest.php │ │ │ ├── GraphQlTypeValidationTest.php │ │ │ ├── GroupedProduct │ │ │ │ ├── AddGroupedProductToWishlistTest.php │ │ │ │ ├── GroupedProductViewTest.php │ │ │ │ └── ProductViewTest.php │ │ │ ├── IntrospectionQueryTest.php │ │ │ ├── LoginAsCustomerGraphQl │ │ │ │ ├── CreateCustomerV2Test.php │ │ │ │ ├── GenerateLoginCustomerTokenTest.php │ │ │ │ └── UpdateCustomerV2Test.php │ │ │ ├── Newsletter │ │ │ │ ├── Customer │ │ │ │ │ └── SubscribeEmailToNewsletterTest.php │ │ │ │ └── Guest │ │ │ │ │ └── SubscribeEmailToNewsletterTest.php │ │ │ ├── PageCache │ │ │ │ ├── CacheTagTest.php │ │ │ │ ├── Cms │ │ │ │ │ ├── BlockCacheTest.php │ │ │ │ │ └── PageCacheTest.php │ │ │ │ ├── GraphQLPageCacheAbstract.php │ │ │ │ ├── ProductInMultipleStoresCacheTest.php │ │ │ │ ├── Quote │ │ │ │ │ └── Guest │ │ │ │ │ │ └── CartCacheTest.php │ │ │ │ ├── UrlRewrite │ │ │ │ │ ├── RouteCacheTest.php │ │ │ │ │ └── UrlResolverCacheTest.php │ │ │ │ └── VarnishTest.php │ │ │ ├── PaymentGraphQl │ │ │ │ ├── GetIsDeferredPaymentMethodTest.php │ │ │ │ └── StoreConfigTest.php │ │ │ ├── PaypalGraphQl │ │ │ │ └── GetIsPaypalExpressDeferredPaymentMethodTest.php │ │ │ ├── Quote │ │ │ │ ├── AddDownloadableProductToCartSingleMutationTest.php │ │ │ │ ├── AddDownloadableProductWithCustomOptionsToCartTest.php │ │ │ │ ├── AddSimpleProductToCartEndToEndTest.php │ │ │ │ ├── AddSimpleProductToCartSingleMutationTest.php │ │ │ │ ├── AddSimpleProductWithCustomOptionsToCartTest.php │ │ │ │ ├── AddVirtualProductWithCustomOptionsToCartTest.php │ │ │ │ ├── CartPromotionsTest.php │ │ │ │ ├── Customer │ │ │ │ │ ├── AddSimpleProductToCartTest.php │ │ │ │ │ ├── AddVirtualProductToCartTest.php │ │ │ │ │ ├── ApplyCouponToCartTest.php │ │ │ │ │ ├── AssignCustomerToGuestCartTest.php │ │ │ │ │ ├── CartDiscountTest.php │ │ │ │ │ ├── CartTotalsTest.php │ │ │ │ │ ├── CheckoutEndToEndTest.php │ │ │ │ │ ├── CreateEmptyCartTest.php │ │ │ │ │ ├── GetAvailablePaymentMethodsTest.php │ │ │ │ │ ├── GetAvailableShippingMethodsTest.php │ │ │ │ │ ├── GetCartEmailTest.php │ │ │ │ │ ├── GetCartIsVirtualTest.php │ │ │ │ │ ├── GetCartTest.php │ │ │ │ │ ├── GetCustomerCartTest.php │ │ │ │ │ ├── GetSelectedPaymentMethodTest.php │ │ │ │ │ ├── GetSelectedShippingMethodTest.php │ │ │ │ │ ├── GetSpecifiedBillingAddressTest.php │ │ │ │ │ ├── GetSpecifiedShippingAddressTest.php │ │ │ │ │ ├── MergeCartsTest.php │ │ │ │ │ ├── PlaceOrderTest.php │ │ │ │ │ ├── RemoveCouponFromCartTest.php │ │ │ │ │ ├── RemoveItemFromCartTest.php │ │ │ │ │ ├── SetBillingAddressOnCartTest.php │ │ │ │ │ ├── SetGuestEmailOnCartTest.php │ │ │ │ │ ├── SetOfflinePaymentMethodsOnCartTest.php │ │ │ │ │ ├── SetOfflineShippingMethodsOnCartTest.php │ │ │ │ │ ├── SetPaymentMethodAndPlaceOrderTest.php │ │ │ │ │ ├── SetPaymentMethodOnCartTest.php │ │ │ │ │ ├── SetPurchaseOrderPaymentMethodOnCartTest.php │ │ │ │ │ ├── SetShippingAddressOnCartTest.php │ │ │ │ │ ├── SetShippingMethodsOnCartTest.php │ │ │ │ │ └── UpdateCartItemsTest.php │ │ │ │ ├── EditQuoteItemWithCustomOptionsTest.php │ │ │ │ ├── GetCartItemOptionsFromUID.php │ │ │ │ ├── GetCartTotalQuantityTest.php │ │ │ │ ├── GetCustomOptionsValuesForQueryBySku.php │ │ │ │ ├── GetCustomOptionsWithUIDForQueryBySku.php │ │ │ │ ├── GetMaskedQuoteIdByReservedOrderId.php │ │ │ │ ├── GetQuoteItemIdByReservedQuoteIdAndSku.php │ │ │ │ └── Guest │ │ │ │ │ ├── AddSimpleProductToCartTest.php │ │ │ │ │ ├── AddVirtualProductToCartTest.php │ │ │ │ │ ├── AllowGuestCheckoutOptionTest.php │ │ │ │ │ ├── ApplyCouponToCartTest.php │ │ │ │ │ ├── ApplyCouponsToCartTest.php │ │ │ │ │ ├── AssignCustomerToGuestCartTest.php │ │ │ │ │ ├── CartDiscountTest.php │ │ │ │ │ ├── CartTotalsTest.php │ │ │ │ │ ├── CheckoutEndToEndTest.php │ │ │ │ │ ├── CreateEmptyCartTest.php │ │ │ │ │ ├── GetAvailablePaymentMethodsTest.php │ │ │ │ │ ├── GetAvailableShippingMethodsTest.php │ │ │ │ │ ├── GetCartEmailTest.php │ │ │ │ │ ├── GetCartIsVirtualTest.php │ │ │ │ │ ├── GetCartTest.php │ │ │ │ │ ├── GetSelectedPaymentMethodTest.php │ │ │ │ │ ├── GetSelectedShippingMethodTest.php │ │ │ │ │ ├── GetSpecifiedBillingAddressTest.php │ │ │ │ │ ├── GetSpecifiedShippingAddressTest.php │ │ │ │ │ ├── MergeCartsTest.php │ │ │ │ │ ├── PlaceOrderTest.php │ │ │ │ │ ├── RemoveCouponFromCartTest.php │ │ │ │ │ ├── RemoveItemFromCartTest.php │ │ │ │ │ ├── SetBillingAddressOnCartTest.php │ │ │ │ │ ├── SetGuestEmailOnCartTest.php │ │ │ │ │ ├── SetOfflinePaymentMethodsOnCartTest.php │ │ │ │ │ ├── SetOfflineShippingMethodsOnCartTest.php │ │ │ │ │ ├── SetPaymentMethodAndPlaceOrderTest.php │ │ │ │ │ ├── SetPaymentMethodOnCartTest.php │ │ │ │ │ ├── SetPurchaseOrderPaymentMethodOnCartTest.php │ │ │ │ │ ├── SetShippingAddressOnCartTest.php │ │ │ │ │ ├── SetShippingMethodsOnCartTest.php │ │ │ │ │ └── UpdateCartItemsTest.php │ │ │ ├── RelatedProduct │ │ │ │ └── GetRelatedProductsTest.php │ │ │ ├── Review │ │ │ │ ├── CreateProductReviewsTest.php │ │ │ │ └── GetProductReviewsTest.php │ │ │ ├── Sales │ │ │ │ ├── CreditmemoTest.php │ │ │ │ ├── CustomerOrders │ │ │ │ │ ├── CustomerOrdersTest.php │ │ │ │ │ └── OrderShipmentsTest.php │ │ │ │ ├── CustomerOrdersTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── CustomerPlaceOrder.php │ │ │ │ │ └── CustomerPlaceOrderWithDownloadable.php │ │ │ │ ├── InvoiceTest.php │ │ │ │ ├── OrdersTest.php │ │ │ │ ├── ReorderConfigurableWithVariationsTest.php │ │ │ │ ├── ReorderMultipleProductsTest.php │ │ │ │ ├── ReorderOverlayProductTest.php │ │ │ │ ├── ReorderTest.php │ │ │ │ ├── RetrieveOrdersByOrderNumberTest.php │ │ │ │ ├── RetrieveOrdersWithBundleProductByOrderNumberTest.php │ │ │ │ ├── RetrieveOrdersWithBundleProductOptionsTest.php │ │ │ │ └── RetrieveOrdersWithDownloadableProductTest.php │ │ │ ├── SendFriend │ │ │ │ ├── SendFriendTest.php │ │ │ │ └── StoreConfigTest.php │ │ │ ├── Store │ │ │ │ ├── AvailableStoreConfigTest.php │ │ │ │ ├── StoreConfigResolverTest.php │ │ │ │ ├── StoreSaveTest.php │ │ │ │ └── StoreValidatorTest.php │ │ │ ├── Swatches │ │ │ │ ├── ProductSearchTest.php │ │ │ │ └── ProductSwatchDataTest.php │ │ │ ├── Tax │ │ │ │ └── ProductViewTest.php │ │ │ ├── TestModule │ │ │ │ ├── GraphQlMutationTest.php │ │ │ │ └── GraphQlQueryTest.php │ │ │ ├── Ups │ │ │ │ └── SetUpsShippingMethodsOnCartTest.php │ │ │ ├── UrlRewrite │ │ │ │ ├── RouteTest.php │ │ │ │ └── UrlResolverTest.php │ │ │ ├── Usps │ │ │ │ └── SetUspsShippingMethodsOnCartTest.php │ │ │ ├── VariablesSupportQueryTest.php │ │ │ ├── Vault │ │ │ │ └── CustomerPaymentTokensTest.php │ │ │ ├── Weee │ │ │ │ ├── CartItemPricesWithFPTTest.php │ │ │ │ ├── ProductPriceWithFPTTest.php │ │ │ │ └── StoreConfigFPTTest.php │ │ │ ├── Wishlist │ │ │ │ ├── AddBundleProductToWishlistTest.php │ │ │ │ ├── AddConfigurableProductToWishlistTest.php │ │ │ │ ├── AddDownloadableProductToWishlistTest.php │ │ │ │ ├── AddWishlistItemsToCartTest.php │ │ │ │ ├── CustomerWishlistTest.php │ │ │ │ ├── CustomerWishlistsTest.php │ │ │ │ ├── DeleteProductsFromWishlistTest.php │ │ │ │ ├── GetCustomOptionsWithUidForQueryBySku.php │ │ │ │ ├── UpdateBundleProductsFromWishlistTest.php │ │ │ │ ├── UpdateProductsFromWishlistTest.php │ │ │ │ └── WishlistTest.php │ │ │ └── _files │ │ │ │ ├── query_introspection.php │ │ │ │ └── schema_response_sdl_deprecated_annotation.php │ │ │ ├── GroupedProduct │ │ │ └── Api │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── ProductLinkManagementTest.php │ │ │ │ ├── ProductLinkRepositoryTest.php │ │ │ │ ├── ProductLinkTypeListTest.php │ │ │ │ └── ProductRepositoryInterfaceTest.php │ │ │ ├── Integration │ │ │ └── Model │ │ │ │ ├── AdminTokenServiceTest.php │ │ │ │ ├── CustomerTokenServiceTest.php │ │ │ │ └── IntegrationTest.php │ │ │ ├── LoginAsCustomerAssistance │ │ │ └── Plugin │ │ │ │ ├── CustomerAfterPluginTest.php │ │ │ │ └── CustomerMeTest.php │ │ │ ├── Multishipping │ │ │ └── Api │ │ │ │ └── CartRepositoryTest.php │ │ │ ├── ProductVideo │ │ │ └── ProductVideoExternalSourceTest.php │ │ │ ├── Quote │ │ │ └── Api │ │ │ │ ├── BillingAddressManagementTest.php │ │ │ │ ├── CartAddingItemsTest.php │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ ├── CartManagementTest.php │ │ │ │ ├── CartRepositoryTest.php │ │ │ │ ├── CartTotalRepositoryTest.php │ │ │ │ ├── CouponManagementTest.php │ │ │ │ ├── GuestBillingAddressManagementTest.php │ │ │ │ ├── GuestCartAddingItemsTest.php │ │ │ │ ├── GuestCartItemRepositoryTest.php │ │ │ │ ├── GuestCartManagementTest.php │ │ │ │ ├── GuestCartRepositoryTest.php │ │ │ │ ├── GuestCartTotalRepositoryTest.php │ │ │ │ ├── GuestCollectRatesTest.php │ │ │ │ ├── GuestCouponManagementTest.php │ │ │ │ ├── GuestPaymentMethodManagementTest.php │ │ │ │ ├── GuestShipmentEstimationTest.php │ │ │ │ ├── GuestShipmentEstimationWithExtensionAttributesTest.php │ │ │ │ ├── GuestShippingMethodManagementTest.php │ │ │ │ ├── PaymentMethodManagementTest.php │ │ │ │ └── ShippingMethodManagementTest.php │ │ │ ├── QuoteGraphQl │ │ │ └── Model │ │ │ │ └── Cart │ │ │ │ └── PlaceOrderMutexTest.php │ │ │ ├── Sales │ │ │ └── Service │ │ │ │ └── V1 │ │ │ │ ├── CreditMemoCreateRefundTest.php │ │ │ │ ├── CreditMemoGenerateIfConfigurableProductWithDecimalQuantityTest.php │ │ │ │ ├── CreditmemoAddCommentTest.php │ │ │ │ ├── CreditmemoCancelTest.php │ │ │ │ ├── CreditmemoCommentsListTest.php │ │ │ │ ├── CreditmemoCreateTest.php │ │ │ │ ├── CreditmemoEmailTest.php │ │ │ │ ├── CreditmemoGetTest.php │ │ │ │ ├── CreditmemoListTest.php │ │ │ │ ├── InvoiceAddCommentTest.php │ │ │ │ ├── InvoiceCaptureTest.php │ │ │ │ ├── InvoiceCommentsListTest.php │ │ │ │ ├── InvoiceCreateTest.php │ │ │ │ ├── InvoiceEmailTest.php │ │ │ │ ├── InvoiceGetTest.php │ │ │ │ ├── InvoiceListTest.php │ │ │ │ ├── InvoiceVoidTest.php │ │ │ │ ├── OrderAddressUpdateTest.php │ │ │ │ ├── OrderCancelTest.php │ │ │ │ ├── OrderCommentsListTest.php │ │ │ │ ├── OrderCreateTest.php │ │ │ │ ├── OrderEmailTest.php │ │ │ │ ├── OrderGetStatusTest.php │ │ │ │ ├── OrderGetTest.php │ │ │ │ ├── OrderHoldTest.php │ │ │ │ ├── OrderInvoiceCreateTest.php │ │ │ │ ├── OrderItemGetListTest.php │ │ │ │ ├── OrderItemGetTest.php │ │ │ │ ├── OrderListTest.php │ │ │ │ ├── OrderStatusHistoryAddTest.php │ │ │ │ ├── OrderUnHoldTest.php │ │ │ │ ├── OrderUpdateTest.php │ │ │ │ ├── RefundOrderTest.php │ │ │ │ ├── ShipOrderTest.php │ │ │ │ ├── ShipmentAddCommentTest.php │ │ │ │ ├── ShipmentAddTrackTest.php │ │ │ │ ├── ShipmentCommentsListTest.php │ │ │ │ ├── ShipmentCreateTest.php │ │ │ │ ├── ShipmentEmailTest.php │ │ │ │ ├── ShipmentGetTest.php │ │ │ │ ├── ShipmentLabelGetTest.php │ │ │ │ ├── ShipmentListTest.php │ │ │ │ ├── ShipmentRemoveTrackTest.php │ │ │ │ └── TransactionTest.php │ │ │ ├── SalesInventory │ │ │ └── Api │ │ │ │ └── Service │ │ │ │ └── V1 │ │ │ │ └── ReturnItemsAfterRefundOrderTest.php │ │ │ ├── SalesRule │ │ │ └── Api │ │ │ │ ├── CouponManagementTest.php │ │ │ │ ├── CouponRepositoryTest.php │ │ │ │ ├── GuestTotalsInformationManagement.php │ │ │ │ ├── RuleRepositoryTest.php │ │ │ │ └── TotalsInformationManagement.php │ │ │ ├── Search │ │ │ └── Api │ │ │ │ └── SearchTest.php │ │ │ ├── Store │ │ │ └── Api │ │ │ │ ├── GroupRepositoryTest.php │ │ │ │ ├── StoreConfigManagerTest.php │ │ │ │ ├── StoreRepositoryTest.php │ │ │ │ └── WebsiteRepositoryTest.php │ │ │ ├── Swatches │ │ │ └── Api │ │ │ │ └── ProductAttributeOptionManagementInterfaceTest.php │ │ │ ├── Tax │ │ │ └── Api │ │ │ │ ├── TaxClassRepositoryTest.php │ │ │ │ ├── TaxRateRepositoryTest.php │ │ │ │ └── TaxRuleRepositoryInterfaceTest.php │ │ │ ├── TestModuleOverrideConfig │ │ │ ├── AbstractOverridesTest.php │ │ │ ├── Inheritance │ │ │ │ ├── Fixtures │ │ │ │ │ ├── FixturesAbstractClass.php │ │ │ │ │ ├── FixturesInterface.php │ │ │ │ │ └── FixturesTest.php │ │ │ │ └── Skip │ │ │ │ │ ├── SkipAbstractClass.php │ │ │ │ │ ├── SkipInterface.php │ │ │ │ │ └── SkipTest.php │ │ │ ├── MagentoApiConfigFixture │ │ │ │ ├── AddFixtureTest.php │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ └── ReplaceFixtureTest.php │ │ │ ├── MagentoApiDataFixture │ │ │ │ ├── AddFixtureTest.php │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ ├── ReplaceFixtureTest.php │ │ │ │ └── SortFixturesTest.php │ │ │ └── Skip │ │ │ │ ├── SkipClassTest.php │ │ │ │ ├── SkipDataSetTest.php │ │ │ │ └── SkipMethodTest.php │ │ │ ├── WebApiTest.php │ │ │ ├── Webapi │ │ │ ├── Authentication │ │ │ │ └── RestTest.php │ │ │ ├── CustomAttributeTypeWsdlGenerationTest.php │ │ │ ├── DataObjectSerialization │ │ │ │ └── ServiceSerializationTest.php │ │ │ ├── DeserializationTest.php │ │ │ ├── JoinDirectivesTest.php │ │ │ ├── JsonGenerationFromDataObjectTest.php │ │ │ ├── PartialResponseTest.php │ │ │ ├── RestSessionCookieTest.php │ │ │ ├── Routing │ │ │ │ ├── BaseService.php │ │ │ │ ├── CoreRoutingTest.php │ │ │ │ ├── GettersTest.php │ │ │ │ ├── NoWebApiXmlTest.php │ │ │ │ ├── RequestIdOverrideTest.php │ │ │ │ ├── RestErrorHandlingTest.php │ │ │ │ ├── ServiceVersionV1Test.php │ │ │ │ ├── ServiceVersionV2Test.php │ │ │ │ ├── SoapErrorHandlingTest.php │ │ │ │ └── SubsetTest.php │ │ │ └── WsdlGenerationFromDataObjectTest.php │ │ │ └── WebapiAsync │ │ │ └── Model │ │ │ ├── AsyncBulkActionConfigurableProductsTest.php │ │ │ ├── AsyncBulkScheduleTest.php │ │ │ ├── AsyncScheduleCustomRouteTest.php │ │ │ ├── AsyncScheduleMultiStoreTest.php │ │ │ ├── AsyncScheduleTest.php │ │ │ └── OrderRepositoryInterfaceTest.php │ ├── config │ │ └── AllureConfig.php │ ├── error_handler.php │ ├── integration │ │ ├── .gitignore │ │ ├── _files │ │ │ └── Magento │ │ │ │ ├── TestModuleAsyncAmqp │ │ │ │ ├── Model │ │ │ │ │ ├── AsyncTestData.php │ │ │ │ │ ├── CustomHandler.php │ │ │ │ │ ├── RequestHandler.php │ │ │ │ │ └── WildCardHandler.php │ │ │ │ ├── etc │ │ │ │ │ ├── communication.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ ├── queue.xml │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ └── queue_topology.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCatalogInventoryCache │ │ │ │ ├── Plugin │ │ │ │ │ └── PreventCachingPreloadedStockDataInToStockRegistry.php │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCatalogSearch │ │ │ │ ├── Model │ │ │ │ │ └── SearchEngineVersionReader.php │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCspConfig │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── csp_whitelist.xml │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCspConfig2 │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleCspUtil │ │ │ │ ├── Controller │ │ │ │ │ └── Csp │ │ │ │ │ │ ├── Aware.php │ │ │ │ │ │ └── Helper.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ ├── frontend │ │ │ │ │ │ └── routes.xml │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ ├── layout │ │ │ │ │ ├── csputil_csp_aware.xml │ │ │ │ │ └── csputil_csp_helper.xml │ │ │ │ │ └── templates │ │ │ │ │ ├── helper.phtml │ │ │ │ │ └── secure.phtml │ │ │ │ ├── TestModuleDirectoryZipCodes │ │ │ │ ├── etc │ │ │ │ │ ├── module.xml │ │ │ │ │ └── zip_codes.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleExtensionAttributes │ │ │ │ ├── Api │ │ │ │ │ └── Data │ │ │ │ │ │ ├── FakeAddressInterface.php │ │ │ │ │ │ ├── FakeAttributeMetadataInterface.php │ │ │ │ │ │ ├── FakeCustomerInterface.php │ │ │ │ │ │ ├── FakeExtensibleOneInterface.php │ │ │ │ │ │ ├── FakeExtensibleTwoInterface.php │ │ │ │ │ │ └── FakeRegionInterface.php │ │ │ │ ├── Model │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── FakeAddress.php │ │ │ │ │ │ ├── FakeAttributeMetadata.php │ │ │ │ │ │ ├── FakeCustomer.php │ │ │ │ │ │ ├── FakeExtensibleOne.php │ │ │ │ │ │ ├── FakeExtensibleTwo.php │ │ │ │ │ │ └── FakeRegion.php │ │ │ │ │ ├── FakeAddress.php │ │ │ │ │ ├── FakeAttributeMetadata.php │ │ │ │ │ ├── FakeCustomer.php │ │ │ │ │ └── FakeRegion.php │ │ │ │ ├── etc │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleFakePaymentMethod │ │ │ │ ├── Gateway │ │ │ │ │ └── Command │ │ │ │ │ │ └── DoNothingCommand.php │ │ │ │ ├── etc │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleMessageQueueConfigOverride │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── module.xml │ │ │ │ │ └── queue_topology.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleMessageQueueConfiguration │ │ │ │ ├── AsyncHandler.php │ │ │ │ ├── HandlerOne.php │ │ │ │ ├── HandlerTwo.php │ │ │ │ ├── SyncHandler.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── communication.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ ├── queue.xml │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ └── queue_topology.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleMview │ │ │ │ ├── etc │ │ │ │ │ ├── module.xml │ │ │ │ │ └── mview.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleMysqlMq │ │ │ │ ├── Model │ │ │ │ │ ├── DataObject.php │ │ │ │ │ ├── DataObjectRepository.php │ │ │ │ │ └── Processor.php │ │ │ │ ├── etc │ │ │ │ │ ├── communication.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ ├── queue.xml │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ └── queue_topology.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ ├── Model │ │ │ │ │ └── FixtureCallStorage.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ │ ├── config.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ ├── Test │ │ │ │ │ └── Integration │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── overrides.xml │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ ├── Test │ │ │ │ │ └── Integration │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── overrides.xml │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleQuoteTotalsObserver │ │ │ │ ├── Model │ │ │ │ │ └── Config.php │ │ │ │ ├── Observer │ │ │ │ │ └── AfterCollectTotals.php │ │ │ │ ├── etc │ │ │ │ │ ├── events.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleSample │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleSecureHtmlRenderer │ │ │ │ ├── Controller │ │ │ │ │ └── Secure │ │ │ │ │ │ └── Helper.php │ │ │ │ ├── composer.json │ │ │ │ ├── etc │ │ │ │ │ ├── frontend │ │ │ │ │ │ └── routes.xml │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ ├── layout │ │ │ │ │ └── securehtml_secure_helper.xml │ │ │ │ │ └── templates │ │ │ │ │ └── helper.phtml │ │ │ │ ├── TestModuleSimpleTemplateDirective │ │ │ │ ├── Model │ │ │ │ │ ├── FooFilter.php │ │ │ │ │ ├── LegacyFilter.php │ │ │ │ │ └── MyDirProcessor.php │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ └── registration.php │ │ │ │ ├── TestModuleSynchronousAmqp │ │ │ │ ├── Api │ │ │ │ │ └── ServiceInterface.php │ │ │ │ ├── Model │ │ │ │ │ └── RpcRequestHandler.php │ │ │ │ ├── etc │ │ │ │ │ ├── communication.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ ├── module.xml │ │ │ │ │ ├── queue.xml │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ └── queue_topology.xml │ │ │ │ └── registration.php │ │ │ │ └── TestModuleWysiwygConfig │ │ │ │ ├── Model │ │ │ │ └── Config.php │ │ │ │ ├── etc │ │ │ │ ├── adminhtml │ │ │ │ │ └── di.xml │ │ │ │ ├── di.xml │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── view │ │ │ │ └── adminhtml │ │ │ │ └── web │ │ │ │ └── wysiwyg │ │ │ │ └── tinymceTestAdapter.js │ │ ├── allure │ │ │ └── allure.config.php │ │ ├── bin │ │ │ └── magento │ │ ├── etc │ │ │ ├── config-global.php.dist │ │ │ ├── di │ │ │ │ ├── persistedInstances │ │ │ │ │ └── ce.php │ │ │ │ └── preferences │ │ │ │ │ └── ce.php │ │ │ ├── install-config-mysql.php.dist │ │ │ └── post-install-setup-command-config.php.dist │ │ ├── framework │ │ │ ├── Magento │ │ │ │ └── TestFramework │ │ │ │ │ ├── Annotation │ │ │ │ │ ├── AbstractDataFixture.php │ │ │ │ │ ├── AdminConfigFixture.php │ │ │ │ │ ├── AppArea.php │ │ │ │ │ ├── AppIsolation.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── ComponentRegistrarFixture.php │ │ │ │ │ ├── ConfigFixture.php │ │ │ │ │ ├── DataFixture.php │ │ │ │ │ ├── DataFixtureBeforeTransaction.php │ │ │ │ │ ├── DataFixtureSetup.php │ │ │ │ │ ├── DbIsolation.php │ │ │ │ │ ├── DbIsolationState.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ ├── IndexerDimensionMode.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── AppArea.php │ │ │ │ │ │ ├── AppIsolation.php │ │ │ │ │ │ ├── Cache.php │ │ │ │ │ │ ├── ComponentsDir.php │ │ │ │ │ │ ├── Composite.php │ │ │ │ │ │ ├── DataFixture.php │ │ │ │ │ │ ├── DbIsolation.php │ │ │ │ │ │ └── IndexerDimensionMode.php │ │ │ │ │ ├── TestCaseAnnotation.php │ │ │ │ │ └── TestsIsolation.php │ │ │ │ │ ├── Api │ │ │ │ │ └── Config │ │ │ │ │ │ └── Reader │ │ │ │ │ │ └── FileResolver.php │ │ │ │ │ ├── App │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── EnvironmentFactory.php │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ ├── MutableScopeConfig.php │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ └── Environment │ │ │ │ │ │ │ └── Developer.php │ │ │ │ │ ├── ReinitableConfig.php │ │ │ │ │ └── State.php │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── Backend │ │ │ │ │ └── App │ │ │ │ │ │ └── Config.php │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ ├── Bootstrap │ │ │ │ │ ├── DocBlock.php │ │ │ │ │ ├── Environment.php │ │ │ │ │ ├── Memory.php │ │ │ │ │ ├── MemoryFactory.php │ │ │ │ │ ├── Profiler.php │ │ │ │ │ └── Settings.php │ │ │ │ │ ├── Bundle │ │ │ │ │ └── Model │ │ │ │ │ │ └── PrepareBundleLinks.php │ │ │ │ │ ├── Catalog │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ ├── DateGroupDataProvider.php │ │ │ │ │ │ │ ├── FileGroupDataProvider.php │ │ │ │ │ │ │ ├── SelectGroupDataProvider.php │ │ │ │ │ │ │ └── TextGroupDataProvider.php │ │ │ │ │ └── Model │ │ │ │ │ │ ├── CategoryLayoutUpdateManager.php │ │ │ │ │ │ ├── GetCategoryByName.php │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ └── Full.php │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ └── QuickSearchByQuery.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ │ ├── Decimal.php │ │ │ │ │ │ │ │ └── MediaImage.php │ │ │ │ │ │ ├── Option │ │ │ │ │ │ │ ├── DataProvider │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ ├── AbstractBase.php │ │ │ │ │ │ │ │ │ ├── AbstractSelect.php │ │ │ │ │ │ │ │ │ ├── AbstractText.php │ │ │ │ │ │ │ │ │ ├── Area.php │ │ │ │ │ │ │ │ │ ├── Checkbox.php │ │ │ │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ │ │ │ ├── DateTime.php │ │ │ │ │ │ │ │ │ ├── DropDown.php │ │ │ │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ ├── MultipleSelect.php │ │ │ │ │ │ │ │ │ ├── RadioButtons.php │ │ │ │ │ │ │ │ │ └── Time.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ └── ValidatorFileMock.php │ │ │ │ │ │ └── Price │ │ │ │ │ │ │ └── GetPriceIndexDataByProductId.php │ │ │ │ │ │ └── ProductLayoutUpdateManager.php │ │ │ │ │ ├── Cms │ │ │ │ │ └── Model │ │ │ │ │ │ └── CustomLayoutManager.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Config │ │ │ │ │ └── Model │ │ │ │ │ │ └── ConfigStorage.php │ │ │ │ │ ├── ConfigurableProduct │ │ │ │ │ ├── Block │ │ │ │ │ │ └── CustomOptions │ │ │ │ │ │ │ ├── DateGroupDataProvider.php │ │ │ │ │ │ │ ├── FileGroupDataProvider.php │ │ │ │ │ │ │ ├── SelectGroupDataProvider.php │ │ │ │ │ │ │ └── TextGroupDataProvider.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── DeleteConfigurableProduct.php │ │ │ │ │ ├── Console │ │ │ │ │ └── CliProxy.php │ │ │ │ │ ├── CookieManager.php │ │ │ │ │ ├── Core │ │ │ │ │ └── Version │ │ │ │ │ │ └── View.php │ │ │ │ │ ├── Customer │ │ │ │ │ └── Model │ │ │ │ │ │ └── DeleteCustomer.php │ │ │ │ │ ├── Db │ │ │ │ │ ├── AbstractDb.php │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── Mysql.php │ │ │ │ │ │ └── TransactionInterface.php │ │ │ │ │ ├── ConnectionAdapter.php │ │ │ │ │ ├── Mysql.php │ │ │ │ │ ├── Sequence.php │ │ │ │ │ └── Sequence │ │ │ │ │ │ └── Builder.php │ │ │ │ │ ├── Directory │ │ │ │ │ └── Model │ │ │ │ │ │ ├── GetRegionIdByName.php │ │ │ │ │ │ └── RemoveCurrencyRateByCode.php │ │ │ │ │ ├── Downloadable │ │ │ │ │ └── Model │ │ │ │ │ │ └── RemoveLinkPurchasedByOrderIncrementId.php │ │ │ │ │ ├── Eav │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ ├── AbstractAttributeDataWithOptions.php │ │ │ │ │ │ │ ├── AbstractBaseAttributeData.php │ │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ │ ├── DateTime.php │ │ │ │ │ │ │ ├── DropDown.php │ │ │ │ │ │ │ ├── MultipleSelect.php │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ ├── TextArea.php │ │ │ │ │ │ │ ├── TextEditor.php │ │ │ │ │ │ │ └── YesNo.php │ │ │ │ │ │ ├── GetAttributeGroupByName.php │ │ │ │ │ │ ├── GetAttributeSetByName.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── GetEntityIdByAttributeId.php │ │ │ │ │ ├── Entity.php │ │ │ │ │ ├── ErrorLog │ │ │ │ │ ├── Listener.php │ │ │ │ │ └── Logger.php │ │ │ │ │ ├── Event │ │ │ │ │ ├── Magento.php │ │ │ │ │ ├── Param │ │ │ │ │ │ └── Transaction.php │ │ │ │ │ ├── PhpUnit.php │ │ │ │ │ └── Transaction.php │ │ │ │ │ ├── EventManager.php │ │ │ │ │ ├── Fixture │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── DataMerger.php │ │ │ │ │ │ ├── Service.php │ │ │ │ │ │ └── ServiceFactory.php │ │ │ │ │ ├── AppArea.php │ │ │ │ │ ├── AppIsolation.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── CallableDataFixture.php │ │ │ │ │ ├── ComponentsDir.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── CompositeProcessor.php │ │ │ │ │ │ ├── ProcessorInterface.php │ │ │ │ │ │ └── UniqueIdProcessor.php │ │ │ │ │ ├── DataFixture.php │ │ │ │ │ ├── DataFixtureBeforeTransaction.php │ │ │ │ │ ├── DataFixtureFactory.php │ │ │ │ │ ├── DataFixtureInterface.php │ │ │ │ │ ├── DataFixtureStorage.php │ │ │ │ │ ├── DataFixtureStorageManager.php │ │ │ │ │ ├── DbIsolation.php │ │ │ │ │ ├── IndexerDimensionMode.php │ │ │ │ │ ├── LegacyDataFixture.php │ │ │ │ │ ├── LegacyDataFixturePathResolver.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── AppArea.php │ │ │ │ │ │ ├── AppIsolation.php │ │ │ │ │ │ ├── Cache.php │ │ │ │ │ │ ├── ComponentsDir.php │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── DataFixture.php │ │ │ │ │ │ ├── DbIsolation.php │ │ │ │ │ │ └── IndexerDimensionMode.php │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ └── RevertibleDataFixtureInterface.php │ │ │ │ │ ├── HTTP │ │ │ │ │ ├── AsyncClientInterfaceMock.php │ │ │ │ │ └── MockDeferredResponse.php │ │ │ │ │ ├── Helper │ │ │ │ │ ├── Amqp.php │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ ├── CacheCleaner.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Curl.php │ │ │ │ │ ├── Eav.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Memory.php │ │ │ │ │ └── Xpath.php │ │ │ │ │ ├── Indexer │ │ │ │ │ └── TestCase.php │ │ │ │ │ ├── Interception │ │ │ │ │ └── PluginList.php │ │ │ │ │ ├── Isolation │ │ │ │ │ ├── AppConfig.php │ │ │ │ │ ├── DeploymentConfig.php │ │ │ │ │ ├── FlushDataFixtureStorage.php │ │ │ │ │ └── WorkingDirectory.php │ │ │ │ │ ├── Listener │ │ │ │ │ └── ExtededTestdox.php │ │ │ │ │ ├── Lock │ │ │ │ │ └── Backend │ │ │ │ │ │ └── DummyLocker.php │ │ │ │ │ ├── Mail │ │ │ │ │ ├── Template │ │ │ │ │ │ └── TransportBuilderMock.php │ │ │ │ │ └── TransportInterfaceMock.php │ │ │ │ │ ├── MemoryLimit.php │ │ │ │ │ ├── MessageQueue │ │ │ │ │ ├── ClearQueueProcessor.php │ │ │ │ │ ├── EnvironmentPreconditionException.php │ │ │ │ │ ├── PreconditionFailedException.php │ │ │ │ │ └── PublisherConsumerController.php │ │ │ │ │ ├── MysqlMq │ │ │ │ │ └── DeleteTopicRelatedMessages.php │ │ │ │ │ ├── ObjectManager.php │ │ │ │ │ ├── ObjectManager │ │ │ │ │ ├── Config.php │ │ │ │ │ └── Configurator.php │ │ │ │ │ ├── ObjectManagerFactory.php │ │ │ │ │ ├── Profiler │ │ │ │ │ └── OutputBamboo.php │ │ │ │ │ ├── Quote │ │ │ │ │ └── Model │ │ │ │ │ │ └── GetQuoteByReservedOrderId.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── SalesRule │ │ │ │ │ └── Model │ │ │ │ │ │ └── GetSalesRuleByName.php │ │ │ │ │ ├── ScopeSwitcherInterface.php │ │ │ │ │ ├── SendFriend │ │ │ │ │ └── Model │ │ │ │ │ │ └── DeleteLogRowsByIp.php │ │ │ │ │ ├── Serialize │ │ │ │ │ └── Serializer.php │ │ │ │ │ ├── Session │ │ │ │ │ └── SessionStartChecker.php │ │ │ │ │ ├── SkippableInterface.php │ │ │ │ │ ├── SkippableTrait.php │ │ │ │ │ ├── Store │ │ │ │ │ ├── ExecuteInStoreContext.php │ │ │ │ │ ├── ScopeSwitcher.php │ │ │ │ │ └── StoreManager.php │ │ │ │ │ ├── SuiteLoader.php │ │ │ │ │ ├── Swatches │ │ │ │ │ └── Model │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ ├── AbstractSwatchAttributeData.php │ │ │ │ │ │ ├── TextSwatch.php │ │ │ │ │ │ └── VisualSwatch.php │ │ │ │ │ ├── TestCase │ │ │ │ │ ├── AbstractBackendController.php │ │ │ │ │ ├── AbstractConfigFiles.php │ │ │ │ │ ├── AbstractController.php │ │ │ │ │ └── AbstractIntegrity.php │ │ │ │ │ ├── View │ │ │ │ │ └── Layout.php │ │ │ │ │ ├── Weee │ │ │ │ │ └── Model │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── FixedProductTax.php │ │ │ │ │ ├── Wishlist │ │ │ │ │ └── Model │ │ │ │ │ │ └── GetWishlistByCustomerId.php │ │ │ │ │ └── Workaround │ │ │ │ │ ├── Cleanup │ │ │ │ │ ├── StaticProperties.php │ │ │ │ │ └── TestCaseProperties.php │ │ │ │ │ ├── Override │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Converter.php │ │ │ │ │ │ ├── Dom.php │ │ │ │ │ │ ├── FileCollector.php │ │ │ │ │ │ ├── FileResolver.php │ │ │ │ │ │ ├── RelationsCollector.php │ │ │ │ │ │ ├── SchemaLocator.php │ │ │ │ │ │ └── ValidationState.php │ │ │ │ │ ├── ConfigInterface.php │ │ │ │ │ ├── Fixture │ │ │ │ │ │ ├── Applier │ │ │ │ │ │ │ ├── AdminConfigFixture.php │ │ │ │ │ │ │ ├── ApplierInterface.php │ │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ │ ├── ConfigFixture.php │ │ │ │ │ │ │ └── DataFixture.php │ │ │ │ │ │ ├── Resolver.php │ │ │ │ │ │ ├── Resolver │ │ │ │ │ │ │ └── TestSetter.php │ │ │ │ │ │ └── ResolverInterface.php │ │ │ │ │ └── WrapperGenerator.php │ │ │ │ │ ├── Segfault.php │ │ │ │ │ └── etc │ │ │ │ │ └── overrides.xsd │ │ │ ├── autoload.php │ │ │ ├── bootstrap.php │ │ │ ├── deployTestModules.php │ │ │ └── tests │ │ │ │ └── unit │ │ │ │ ├── framework │ │ │ │ └── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ └── Test │ │ │ │ ├── Annotation │ │ │ │ ├── AdminConfigFixtureTest.php │ │ │ │ ├── AppAreaTest.php │ │ │ │ ├── AppIsolationTest.php │ │ │ │ ├── ComponentRegistrarFixtureTest.php │ │ │ │ ├── ConfigFixtureTest.php │ │ │ │ ├── DataFixtureTest.php │ │ │ │ ├── DbIsolationTest.php │ │ │ │ ├── Parser │ │ │ │ │ └── DataFixtureTest.php │ │ │ │ └── _files │ │ │ │ │ ├── components │ │ │ │ │ ├── a │ │ │ │ │ │ └── aa │ │ │ │ │ │ │ ├── aaa │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ ├── b │ │ │ │ │ │ └── registration.php │ │ │ │ │ └── registration.php │ │ │ │ │ ├── sample_fixture_three.php │ │ │ │ │ └── sample_fixture_three_rollback.php │ │ │ │ ├── App │ │ │ │ └── ConfigTest.php │ │ │ │ ├── ApplicationTest.php │ │ │ │ ├── Bootstrap │ │ │ │ ├── DocBlockTest.php │ │ │ │ ├── MemoryTest.php │ │ │ │ ├── ProfilerTest.php │ │ │ │ ├── SettingsTest.php │ │ │ │ └── _files │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1.xml │ │ │ │ │ ├── 1.xml.dist │ │ │ │ │ ├── 2.xml │ │ │ │ │ ├── 3.xml.dist │ │ │ │ │ ├── 4.php │ │ │ │ │ └── metrics.php │ │ │ │ ├── BootstrapTest.php │ │ │ │ ├── Db │ │ │ │ └── Adapter │ │ │ │ │ └── TransactionInterfaceTest.php │ │ │ │ ├── EntityTest.php │ │ │ │ ├── Event │ │ │ │ ├── MagentoTest.php │ │ │ │ ├── Param │ │ │ │ │ └── TransactionTest.php │ │ │ │ ├── PhpUnitTest.php │ │ │ │ └── TransactionTest.php │ │ │ │ ├── EventManagerTest.php │ │ │ │ ├── Fixture │ │ │ │ ├── Api │ │ │ │ │ └── ServiceTest.php │ │ │ │ ├── CallableDataFixtureTest.php │ │ │ │ ├── DataFixtureStorageTest.php │ │ │ │ ├── FactoryTest.php │ │ │ │ ├── LegacyDataFixturePathResolverTest.php │ │ │ │ ├── LegacyDataFixtureTest.php │ │ │ │ └── Parser │ │ │ │ │ ├── AppAreaTest.php │ │ │ │ │ ├── AppIsolationTest.php │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ ├── ComponentsDirTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── DataFixtureTest.php │ │ │ │ │ ├── DbIsolationTest.php │ │ │ │ │ └── IndexerDimensionModeTest.php │ │ │ │ ├── Helper │ │ │ │ ├── BootstrapTest.php │ │ │ │ ├── FactoryTest.php │ │ │ │ └── MemoryTest.php │ │ │ │ ├── Isolation │ │ │ │ ├── AppConfigTest.php │ │ │ │ └── WorkingDirectoryTest.php │ │ │ │ ├── MemoryLimitTest.php │ │ │ │ ├── ObjectManagerTest.php │ │ │ │ ├── Profiler │ │ │ │ ├── OutputBambooTest.php │ │ │ │ └── OutputBambooTestFilter.php │ │ │ │ ├── RequestTest.php │ │ │ │ ├── TestCase │ │ │ │ └── ControllerAbstractTest.php │ │ │ │ ├── Workaround │ │ │ │ ├── Cleanup │ │ │ │ │ ├── TestCasePropertiesTest.php │ │ │ │ │ └── TestCasePropertiesTest │ │ │ │ │ │ └── DummyTestCase.php │ │ │ │ └── Override │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ └── Fixture │ │ │ │ │ ├── Applier │ │ │ │ │ ├── AdminConfigFixtureTest.php │ │ │ │ │ ├── ConfigFixtureTest.php │ │ │ │ │ └── DataFixtureTest.php │ │ │ │ │ ├── Resolver │ │ │ │ │ └── TestSetterTest.php │ │ │ │ │ └── ResolverTest.php │ │ │ │ └── _files │ │ │ │ ├── config-global-1.php │ │ │ │ ├── install-config-mysql1.php │ │ │ │ ├── post-install-setup-command-config1.php │ │ │ │ ├── post-install-setup-command-config3.php │ │ │ │ └── post-install-setup-command-config4.php │ │ ├── isolate.txt │ │ ├── phpunit.xml.dist │ │ ├── testsuite │ │ │ └── Magento │ │ │ │ ├── AdminNotification │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Notification │ │ │ │ │ │ ├── MarkAsReadTest.php │ │ │ │ │ │ ├── MassMarkAsReadTest.php │ │ │ │ │ │ ├── MassRemoveTest.php │ │ │ │ │ │ └── RemoveTest.php │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Inbox │ │ │ │ │ │ └── Collection │ │ │ │ │ │ └── CriticalTest.php │ │ │ │ └── _files │ │ │ │ │ └── notifications.php │ │ │ │ ├── AdvancedPricingImportExport │ │ │ │ ├── Model │ │ │ │ │ ├── Export │ │ │ │ │ │ └── AdvancedPricingTest.php │ │ │ │ │ └── Import │ │ │ │ │ │ ├── AdvancedPricingTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── import_advanced_pricing.csv │ │ │ │ │ │ ├── import_advanced_pricing_for_additional_attributes_products.csv │ │ │ │ │ │ ├── import_catalog_product.csv │ │ │ │ │ │ ├── import_validation_duplicate_diff_currency_data_provider.php │ │ │ │ │ │ └── import_validation_duplicate_same_currency_data_provider.php │ │ │ │ └── _files │ │ │ │ │ ├── create_products.php │ │ │ │ │ ├── create_products_rollback.php │ │ │ │ │ ├── product_with_second_website.php │ │ │ │ │ └── product_with_second_website_rollback.php │ │ │ │ ├── AdvancedSearch │ │ │ │ ├── Block │ │ │ │ │ └── SuggestionsTest.php │ │ │ │ └── Model │ │ │ │ │ └── SuggestedQueriesTest.php │ │ │ │ ├── Analytics │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ └── CollectionTimeLabelTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Reports │ │ │ │ │ │ └── ShowTest.php │ │ │ │ ├── Cron │ │ │ │ │ ├── CollectDataTest.php │ │ │ │ │ └── UpdateTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── EnabledTest.php │ │ │ │ │ ├── Connector │ │ │ │ │ │ └── Http │ │ │ │ │ │ │ └── ReSignUpResponseResolverTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── BaseUrlConfigPluginTest.php │ │ │ │ │ └── ReportUrlProviderTest.php │ │ │ │ └── _files │ │ │ │ │ ├── create_link.php │ │ │ │ │ ├── enabled_subscription_with_invalid_token.php │ │ │ │ │ └── enabled_subscription_with_invalid_token_rollback.php │ │ │ │ ├── AsynchronousOperations │ │ │ │ ├── Cron │ │ │ │ │ └── MarkIncompleteOperationsAsFailedTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── BulkManagementTest.php │ │ │ │ │ ├── BulkNotificationManagementTest.php │ │ │ │ │ ├── BulkStatusTest.php │ │ │ │ │ ├── MassConsumerEnvelopeCallbackTest.php │ │ │ │ │ ├── MassScheduleTest.php │ │ │ │ │ ├── OperationManagementTest.php │ │ │ │ │ └── SaveMultipleOperationsTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── Component │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ ├── Operation │ │ │ │ │ │ ├── Failed │ │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ │ │ └── Retriable │ │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ └── _files │ │ │ │ │ ├── acknowledged_bulk.php │ │ │ │ │ ├── acknowledged_bulk_rollback.php │ │ │ │ │ ├── bulk.php │ │ │ │ │ ├── bulk_rollback.php │ │ │ │ │ ├── operation_searchable.php │ │ │ │ │ └── operation_searchable_rollback.php │ │ │ │ ├── Authorization │ │ │ │ └── Model │ │ │ │ │ ├── ResourceModel │ │ │ │ │ ├── Role │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ ├── RoleTest.php │ │ │ │ │ └── Rules │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ ├── RoleTest.php │ │ │ │ │ └── RulesTest.php │ │ │ │ ├── Backend │ │ │ │ ├── App │ │ │ │ │ ├── AbstractActionTest.php │ │ │ │ │ ├── Area │ │ │ │ │ │ └── FrontNameResolverTest.php │ │ │ │ │ ├── Request │ │ │ │ │ │ └── BackendValidatorTest.php │ │ │ │ │ └── RouterTest.php │ │ │ │ ├── Block │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ ├── Chart │ │ │ │ │ │ │ └── PeriodTest.php │ │ │ │ │ │ ├── Orders │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── Products │ │ │ │ │ │ │ └── ViewedTest.php │ │ │ │ │ ├── MenuTest.php │ │ │ │ │ ├── Page │ │ │ │ │ │ ├── FooterTest.php │ │ │ │ │ │ └── HeaderTest.php │ │ │ │ │ ├── System │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ ├── Design │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── GeneralTest.php │ │ │ │ │ │ └── Store │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ │ │ └── WebsiteTest.php │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ ├── Widget │ │ │ │ │ │ ├── Button │ │ │ │ │ │ │ └── SplitButtonTest.php │ │ │ │ │ │ ├── ButtonTest.php │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ └── ContainerTest.php │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ ├── Column │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ │ └── TextTest.php │ │ │ │ │ │ │ ├── ColumnSetTest.php │ │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ │ ├── ExtendedTest.php │ │ │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ │ │ ├── Massaction │ │ │ │ │ │ │ │ └── AdditionalTest.php │ │ │ │ │ │ │ └── MassactionTest.php │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ └── TabsTest.php │ │ │ │ │ ├── WidgetTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── design │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── test_default │ │ │ │ │ │ │ ├── Magento_Backend │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ │ └── layout_test_grid_handle.xml │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── grid_sort_asc.gif │ │ │ │ │ │ │ ├── grid_sort_desc.gif │ │ │ │ │ │ │ ├── grid_th_bg.gif │ │ │ │ │ │ │ ├── grid_th_onclick_bg.gif │ │ │ │ │ │ │ ├── pager_arrow_left.gif │ │ │ │ │ │ │ ├── pager_arrow_left_off.gif │ │ │ │ │ │ │ ├── pager_arrow_right.gif │ │ │ │ │ │ │ └── pager_arrow_right_off.gif │ │ │ │ │ │ ├── form_key_disabled.php │ │ │ │ │ │ ├── form_key_disabled_rollback.php │ │ │ │ │ │ └── menu │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Backend │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── menu.xml │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── CleanStaticFilesTest.php │ │ │ │ │ │ └── MassActionTest.php │ │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ │ ├── ConsecutiveCallTest.php │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ ├── AjaxBlockTest.php │ │ │ │ │ │ └── ProductsViewedTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ │ └── StoreTest.php │ │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── SessionTest.php │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ └── ChartTest.php │ │ │ │ │ ├── Locale │ │ │ │ │ │ └── ResolverTest.php │ │ │ │ │ ├── MenuTest.php │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── test_config.xml │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── AdminConfigTest.php │ │ │ │ │ │ └── QuoteTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ ├── Translate │ │ │ │ │ │ └── InlineTest.php │ │ │ │ │ └── UrlTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── allowed_countries_fr.php │ │ │ │ │ └── allowed_countries_fr_rollback.php │ │ │ │ └── controllers │ │ │ │ │ └── _files │ │ │ │ │ └── cache │ │ │ │ │ ├── all_types_invalidated.php │ │ │ │ │ ├── all_types_invalidated_rollback.php │ │ │ │ │ ├── application_cache.php │ │ │ │ │ ├── application_cache_rollback.php │ │ │ │ │ ├── empty_storage.php │ │ │ │ │ ├── non_application_cache.php │ │ │ │ │ └── non_application_cache_rollback.php │ │ │ │ ├── Bundle │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── Bundle │ │ │ │ │ │ │ └── Option │ │ │ │ │ │ │ ├── Search │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── SearchTest.php │ │ │ │ │ ├── Catalog │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── AbstractBundleOptionsViewTest.php │ │ │ │ │ │ │ ├── BundleProductPriceTest.php │ │ │ │ │ │ │ ├── BundleTest.php │ │ │ │ │ │ │ ├── CheckboxOptionViewTest.php │ │ │ │ │ │ │ ├── DropDownOptionViewTest.php │ │ │ │ │ │ │ ├── MultiselectOptionViewTest.php │ │ │ │ │ │ │ └── RadioOptionViewTest.php │ │ │ │ │ └── Sales │ │ │ │ │ │ └── Order │ │ │ │ │ │ └── Items │ │ │ │ │ │ └── RendererTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── MassDeleteTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── AbstractBundleProductSaveTest.php │ │ │ │ │ │ │ ├── DynamicBundleProductTest.php │ │ │ │ │ │ │ └── FixedBundleProductTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Category │ │ │ │ │ │ └── ProductIndexerTest.php │ │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ └── ProductIdentitiesExtenderTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── BundlePriceAbstract.php │ │ │ │ │ │ ├── DynamicBundlePriceCalculatorTest.php │ │ │ │ │ │ ├── DynamicBundlePriceCalculatorWithDimensionTest.php │ │ │ │ │ │ ├── DynamicBundleWithCatalogPriceRuleCalculatorTest.php │ │ │ │ │ │ ├── DynamicBundleWithSpecialPriceCalculatorTest.php │ │ │ │ │ │ ├── DynamicBundleWithTierPriceCalculatorTest.php │ │ │ │ │ │ ├── FixedBundlePriceCalculatorTest.php │ │ │ │ │ │ ├── FixedBundlePriceCalculatorWithDimensionTest.php │ │ │ │ │ │ ├── FixedBundleWithCatalogPriceRuleCalculatorTest.php │ │ │ │ │ │ ├── FixedBundleWithSpecialPriceCalculatorTest.php │ │ │ │ │ │ ├── FixedBundleWithTierPriceCalculatorTest.php │ │ │ │ │ │ ├── IsSaleableTest.php │ │ │ │ │ │ ├── LinksListTest.php │ │ │ │ │ │ ├── OptionListTest.php │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ ├── PriceWithDimensionTest.php │ │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ │ └── TypeTest.php │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ ├── QuoteRecollectProcessorTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ └── Sales │ │ │ │ │ │ └── AdminOrder │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ ├── Pricing │ │ │ │ │ └── Price │ │ │ │ │ │ └── FinalPriceTest.php │ │ │ │ └── _files │ │ │ │ │ ├── PriceCalculator │ │ │ │ │ ├── dynamic_bundle_product.php │ │ │ │ │ ├── dynamic_bundle_product_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule.php │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_special_price.php │ │ │ │ │ ├── dynamic_bundle_product_with_special_price_rollback.php │ │ │ │ │ ├── fixed_bundle_product.php │ │ │ │ │ ├── fixed_bundle_product_rollback.php │ │ │ │ │ ├── fixed_bundle_product_with_catalog_rule.php │ │ │ │ │ ├── fixed_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ ├── fixed_bundle_product_with_special_price.php │ │ │ │ │ └── fixed_bundle_product_with_special_price_rollback.php │ │ │ │ │ ├── bundle_product_checkbox_options.php │ │ │ │ │ ├── bundle_product_checkbox_options_rollback.php │ │ │ │ │ ├── bundle_product_checkbox_required_option.php │ │ │ │ │ ├── bundle_product_checkbox_required_option_rollback.php │ │ │ │ │ ├── bundle_product_checkbox_required_options.php │ │ │ │ │ ├── bundle_product_checkbox_required_options_rollback.php │ │ │ │ │ ├── bundle_product_dropdown_options.php │ │ │ │ │ ├── bundle_product_dropdown_options_rollback.php │ │ │ │ │ ├── bundle_product_dropdown_required_options.php │ │ │ │ │ ├── bundle_product_dropdown_required_options_rollback.php │ │ │ │ │ ├── bundle_product_multiselect_options.php │ │ │ │ │ ├── bundle_product_multiselect_options_rollback.php │ │ │ │ │ ├── bundle_product_multiselect_required_option.php │ │ │ │ │ ├── bundle_product_multiselect_required_option_rollback.php │ │ │ │ │ ├── bundle_product_multiselect_required_options.php │ │ │ │ │ ├── bundle_product_multiselect_required_options_rollback.php │ │ │ │ │ ├── bundle_product_radio_options.php │ │ │ │ │ ├── bundle_product_radio_options_rollback.php │ │ │ │ │ ├── bundle_product_radio_required_option.php │ │ │ │ │ ├── bundle_product_radio_required_option_rollback.php │ │ │ │ │ ├── bundle_product_radio_required_options.php │ │ │ │ │ ├── bundle_product_radio_required_options_rollback.php │ │ │ │ │ ├── bundle_product_single_dropdown_option.php │ │ │ │ │ ├── bundle_product_single_dropdown_option_rollback.php │ │ │ │ │ ├── bundle_product_two_dropdown_options.php │ │ │ │ │ ├── bundle_product_two_dropdown_options_rollback.php │ │ │ │ │ ├── bundle_product_with_disabled_product_options.php │ │ │ │ │ ├── bundle_product_with_disabled_product_options_rollback.php │ │ │ │ │ ├── bundle_product_with_dynamic_price.php │ │ │ │ │ ├── bundle_product_with_dynamic_price_rollback.php │ │ │ │ │ ├── bundle_product_with_not_visible_children.php │ │ │ │ │ ├── bundle_product_with_not_visible_children_rollback.php │ │ │ │ │ ├── bundle_product_with_tier_price_selections.php │ │ │ │ │ ├── bundle_product_with_tier_price_selections_rollback.php │ │ │ │ │ ├── dynamic_and_fixed_bundle_products_in_category.php │ │ │ │ │ ├── dynamic_and_fixed_bundle_products_in_category_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_multiselect_option.php │ │ │ │ │ ├── dynamic_bundle_product_multiselect_option_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule.php │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_multiple_options.php │ │ │ │ │ ├── dynamic_bundle_product_with_multiple_options_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_special_price.php │ │ │ │ │ ├── dynamic_bundle_product_with_special_price_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_with_tier_price.php │ │ │ │ │ ├── dynamic_bundle_product_with_tier_price_rollback.php │ │ │ │ │ ├── dynamic_bundle_product_without_discounts.php │ │ │ │ │ ├── dynamic_bundle_product_without_discounts_rollback.php │ │ │ │ │ ├── empty_bundle_product.php │ │ │ │ │ ├── empty_bundle_product_rollback.php │ │ │ │ │ ├── fixed_bundle_product_with_special_price.php │ │ │ │ │ ├── fixed_bundle_product_with_special_price_rollback.php │ │ │ │ │ ├── fixed_bundle_product_with_tier_price.php │ │ │ │ │ ├── fixed_bundle_product_with_tier_price_rollback.php │ │ │ │ │ ├── fixed_bundle_product_without_discounts.php │ │ │ │ │ ├── fixed_bundle_product_without_discounts_rollback.php │ │ │ │ │ ├── fixed_bundle_product_zero_price_option_selection.php │ │ │ │ │ ├── fixed_bundle_product_zero_price_option_selection_rollback.php │ │ │ │ │ ├── issaleable_product.php │ │ │ │ │ ├── issaleable_product_rollback.php │ │ │ │ │ ├── multiple_products.php │ │ │ │ │ ├── multiple_products_rollback.php │ │ │ │ │ ├── order_item_with_bundle_and_options.php │ │ │ │ │ ├── order_item_with_bundle_and_options_rollback.php │ │ │ │ │ ├── order_items_simple_and_bundle.php │ │ │ │ │ ├── order_items_simple_and_bundle_rollback.php │ │ │ │ │ ├── order_with_2_bundles_shipping_separately.php │ │ │ │ │ ├── order_with_2_bundles_shipping_separately_rollback.php │ │ │ │ │ ├── order_with_bundle_shipped_separately.php │ │ │ │ │ ├── order_with_bundle_shipped_separately_rollback.php │ │ │ │ │ ├── order_with_bundle_shipped_together.php │ │ │ │ │ ├── order_with_bundle_shipped_together_rollback.php │ │ │ │ │ ├── product.php │ │ │ │ │ ├── product_1.php │ │ │ │ │ ├── product_1_rollback.php │ │ │ │ │ ├── product_in_category.php │ │ │ │ │ ├── product_in_category_rollback.php │ │ │ │ │ ├── product_rollback.php │ │ │ │ │ ├── product_with_multiple_options.php │ │ │ │ │ ├── product_with_multiple_options_1.php │ │ │ │ │ ├── product_with_multiple_options_1_rollback.php │ │ │ │ │ ├── product_with_multiple_options_and_custom_quantity.php │ │ │ │ │ ├── product_with_multiple_options_and_custom_quantity_rollback.php │ │ │ │ │ ├── product_with_multiple_options_radio_select.php │ │ │ │ │ ├── product_with_multiple_options_radio_select_rollback.php │ │ │ │ │ ├── product_with_multiple_options_rollback.php │ │ │ │ │ ├── product_with_simple_tier_pricing.php │ │ │ │ │ ├── product_with_simple_tier_pricing_rollback.php │ │ │ │ │ ├── product_with_tier_pricing.php │ │ │ │ │ ├── product_with_tier_pricing_rollback.php │ │ │ │ │ ├── quote_with_bundle_and_options.php │ │ │ │ │ ├── quote_with_bundle_and_options_rollback.php │ │ │ │ │ ├── quote_with_fixed_bundle_product.php │ │ │ │ │ ├── quote_with_fixed_bundle_product_rollback.php │ │ │ │ │ ├── two_bundle_products_with_separate_shipping.php │ │ │ │ │ └── two_bundle_products_with_separate_shipping_rollback.php │ │ │ │ ├── BundleImportExport │ │ │ │ └── Model │ │ │ │ │ ├── BundleTest.php │ │ │ │ │ ├── Export │ │ │ │ │ └── RowCustomizerTest.php │ │ │ │ │ └── Import │ │ │ │ │ ├── Product │ │ │ │ │ └── Type │ │ │ │ │ │ └── BundleTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── import_bundle.csv │ │ │ │ │ ├── import_bundle_multiple_store_views.csv │ │ │ │ │ ├── import_bundle_set_all_products_out_of_stock.csv │ │ │ │ │ ├── import_bundle_set_option1_products_in_stock.csv │ │ │ │ │ ├── import_bundle_set_option1_products_out_of_stock.csv │ │ │ │ │ ├── import_bundle_update_values.csv │ │ │ │ │ └── import_bundle_with_question_mark.csv │ │ │ │ ├── Captcha │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Captcha │ │ │ │ │ │ │ └── DefaultCaptchaTest.php │ │ │ │ │ └── Captcha │ │ │ │ │ │ └── DefaultTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── CaseBackendLoginActionWithInvalidCaptchaReturnsErrorTest.php │ │ │ │ │ ├── CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php │ │ │ │ │ ├── CaseCheckOnFrontendUnsuccessfulMessageWhenCaptchaFailedTest.php │ │ │ │ │ ├── CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php │ │ │ │ │ ├── CaseCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php │ │ │ │ │ ├── ResetAttemptForBackendObserverTest.php │ │ │ │ │ ├── ResetAttemptForFrontendAccountEditObserverTest.php │ │ │ │ │ └── ResetAttemptForFrontendObserverTest.php │ │ │ │ └── _files │ │ │ │ │ ├── dummy_user.php │ │ │ │ │ ├── failed_logins_backend.php │ │ │ │ │ ├── failed_logins_backend_rollback.php │ │ │ │ │ ├── failed_logins_frontend.php │ │ │ │ │ └── failed_logins_frontend_rollback.php │ │ │ │ ├── Catalog │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── Checkboxes │ │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ │ ├── Tab │ │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── FrontTest.php │ │ │ │ │ │ │ └── Set │ │ │ │ │ │ │ │ └── Toolbar │ │ │ │ │ │ │ │ └── AddTest.php │ │ │ │ │ │ │ ├── Composite │ │ │ │ │ │ │ ├── Fieldset │ │ │ │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ │ │ │ └── QtyTest.php │ │ │ │ │ │ │ └── FieldsetTest.php │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ ├── JsTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ ├── Alerts │ │ │ │ │ │ │ │ ├── AbstractAlertTest.php │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ │ ├── OptionTest.php │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── SelectTest.php │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ │ └── ContentTest.php │ │ │ │ │ │ │ │ └── WeightTest.php │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ └── AjaxTest.php │ │ │ │ │ ├── BreadcrumbsTest.php │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── TitleTest.php │ │ │ │ │ │ ├── TopMenuTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ └── Product │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ ├── ListProduct │ │ │ │ │ │ ├── CheckProductPriceTest.php │ │ │ │ │ │ ├── ProductInCategoriesViewTest.php │ │ │ │ │ │ └── SortingTest.php │ │ │ │ │ │ ├── ListTest.php │ │ │ │ │ │ ├── NewTest.php │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ ├── AbstractLinksTest.php │ │ │ │ │ │ ├── CrosssellTest.php │ │ │ │ │ │ ├── RelatedTest.php │ │ │ │ │ │ ├── ToolbarTest.php │ │ │ │ │ │ └── UpsellTest.php │ │ │ │ │ │ ├── View │ │ │ │ │ │ ├── AbstractCurrencyTest.php │ │ │ │ │ │ ├── AdditionalTest.php │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── AbstractAttributeTest.php │ │ │ │ │ │ │ ├── DateAttributeTest.php │ │ │ │ │ │ │ ├── DropdownAttributeTest.php │ │ │ │ │ │ │ ├── MultiSelectAttributeTest.php │ │ │ │ │ │ │ ├── PriceAttributeTest.php │ │ │ │ │ │ │ ├── TextAreaAttributeTest.php │ │ │ │ │ │ │ ├── TextAttributeTest.php │ │ │ │ │ │ │ └── YesNoAttributeTest.php │ │ │ │ │ │ ├── DescriptionTest.php │ │ │ │ │ │ ├── GalleryTest.php │ │ │ │ │ │ ├── MultiStoreCurrencyTest.php │ │ │ │ │ │ ├── Options │ │ │ │ │ │ │ ├── AbstractRenderCustomOptionsTest.php │ │ │ │ │ │ │ ├── RenderOptionsTest.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── DateTest.php │ │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ │ └── SingleStoreCurrencyTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── ProductAttributesCleanUpTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── AddTest.php │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ └── DeleteCategoryWithEnabledFlatTest.php │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ └── UploadTest.php │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ │ ├── AbstractSaveCategoryTest.php │ │ │ │ │ │ │ │ ├── SaveCategoryTest.php │ │ │ │ │ │ │ │ ├── SaveCategoryWithEnabledFlatTest.php │ │ │ │ │ │ │ │ ├── UpdateCategoryTest.php │ │ │ │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── AbstractAlertTest.php │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ ├── AlertsPriceGridTest.php │ │ │ │ │ │ │ ├── AlertsStockGridTest.php │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ │ ├── AbstractDeleteAttributeControllerTest.php │ │ │ │ │ │ │ │ │ ├── CatalogAttributesControllerTest.php │ │ │ │ │ │ │ │ │ └── DeleteAttributeControllerErrorTest.php │ │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ │ ├── AbstractSaveAttributeTest.php │ │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ │ │ └── MediaImageTest.php │ │ │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ │ │ ├── AbstractUpdateAttributeTest.php │ │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ │ └── MediaImageTest.php │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ ├── DuplicateTest.php │ │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ │ └── UploadTest.php │ │ │ │ │ │ │ ├── GetSelectedTest.php │ │ │ │ │ │ │ ├── Initialization │ │ │ │ │ │ │ │ └── HelperTest.php │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ ├── ReviewTest.php │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ ├── AdvancedPricingTest.php │ │ │ │ │ │ │ │ ├── CategoryIndexTest.php │ │ │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ │ │ ├── ImagesTest.php │ │ │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ │ │ └── UpdateCustomOptionsTest.php │ │ │ │ │ │ │ ├── SearchTest.php │ │ │ │ │ │ │ ├── Set │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ │ └── ValidateTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Category │ │ │ │ │ │ └── CategoryUrlRewriteTest.php │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── CompareTest.php │ │ │ │ │ │ ├── ProductUrlRewriteTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Cron │ │ │ │ │ └── DeleteOutdatedPriceValuesTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ ├── DataTest.php │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── CompareTest.php │ │ │ │ │ │ ├── CompositeTest.php │ │ │ │ │ │ ├── FlatTest.php │ │ │ │ │ │ ├── Stub │ │ │ │ │ │ │ └── ProductControllerStub.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AbstractModel │ │ │ │ │ │ └── Stub.php │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ ├── AbstractLayoutUpdateTest.php │ │ │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ │ │ ├── ConsumerWebsiteAssignTest.php │ │ │ │ │ │ │ ├── CustomlayoutupdateTest.php │ │ │ │ │ │ │ └── StartdateTest.php │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ ├── AuthorizationTest.php │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ ├── Link │ │ │ │ │ │ │ └── SaveHandlerTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── category_without_image.php │ │ │ │ │ │ │ ├── service_category_create.php │ │ │ │ │ │ │ └── service_category_create_rollback.php │ │ │ │ │ ├── CategoryLinkManagementTest.php │ │ │ │ │ ├── CategoryRepositoryTest.php │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ ├── CategoryTreeTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ ├── Entity │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ └── ContainerTest.php │ │ │ │ │ ├── ImageUploaderTest.php │ │ │ │ │ ├── Indexer │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ │ └── FullTest.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ ├── FlatTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── CategoryIndexTest.php │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ ├── Flat │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ ├── CustomFlatAttributeTest.php │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ ├── RelationTest.php │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ └── ProcessorTest.php │ │ │ │ │ │ │ └── Price │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ ├── InvalidateIndexTest.php │ │ │ │ │ │ │ ├── SimpleWithOptionsTierPriceTest.php │ │ │ │ │ │ │ └── SimpleWithOptionsTierPriceWithDimensionTest.php │ │ │ │ │ ├── Layer │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ └── ItemCollectionProviderTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ ├── DataProvider │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ ├── AlgorithmAdvancedTest.php │ │ │ │ │ │ │ ├── AlgorithmBaseTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── _algorithm_base_data.php │ │ │ │ │ │ │ │ ├── products_advanced.php │ │ │ │ │ │ │ │ ├── products_advanced_rollback.php │ │ │ │ │ │ │ │ ├── products_base.php │ │ │ │ │ │ │ │ └── products_base_rollback.php │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── attribute_weight_filterable.php │ │ │ │ │ │ │ ├── attribute_with_option.php │ │ │ │ │ │ │ └── attribute_with_option_rollback.php │ │ │ │ │ ├── Layout │ │ │ │ │ │ └── DepersonalizePluginTest.php │ │ │ │ │ ├── Locator │ │ │ │ │ │ └── RegistryLocatorTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── ActionTest.php │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ ├── SkuTest.php │ │ │ │ │ │ │ │ ├── StockTest.php │ │ │ │ │ │ │ │ └── TierpriceTest.php │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ ├── AbstractAttributeTest.php │ │ │ │ │ │ │ │ ├── AttributeDateTest.php │ │ │ │ │ │ │ │ ├── AttributeDropdownTest.php │ │ │ │ │ │ │ │ ├── AttributeMultiSelectTest.php │ │ │ │ │ │ │ │ ├── AttributePriceTest.php │ │ │ │ │ │ │ │ ├── AttributeTextAreaTest.php │ │ │ │ │ │ │ │ ├── AttributeTextTest.php │ │ │ │ │ │ │ │ └── AttributeYesNoTest.php │ │ │ │ │ │ │ ├── SetTest.php │ │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ │ └── CountryofmanufactureTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── create_attribute_service.php │ │ │ │ │ │ │ │ ├── create_attribute_service_rollback.php │ │ │ │ │ │ │ │ ├── select_attribute.php │ │ │ │ │ │ │ │ └── select_attribute_rollback.php │ │ │ │ │ │ ├── AuthorizationTest.php │ │ │ │ │ │ ├── Compare │ │ │ │ │ │ │ └── ListCompareTest.php │ │ │ │ │ │ ├── CopierTest.php │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ ├── CreateHandlerTest.php │ │ │ │ │ │ │ ├── ProcessorTest.php │ │ │ │ │ │ │ ├── ReadHandlerTest.php │ │ │ │ │ │ │ └── UpdateHandlerTest.php │ │ │ │ │ │ ├── ImageTest.php │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ ├── Option │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ │ ├── ValidatorFileTest.php │ │ │ │ │ │ │ │ └── ValidatorInfoTest.php │ │ │ │ │ │ │ │ └── TextTest.php │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ └── SpecialPriceStorageTest.php │ │ │ │ │ │ ├── ProductFrontendAction │ │ │ │ │ │ │ └── SynchronizerTest.php │ │ │ │ │ │ ├── Type │ │ │ │ │ │ │ ├── AbstractTypeTest.php │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ ├── PriceWithDimensionTest.php │ │ │ │ │ │ │ └── VirtualTest.php │ │ │ │ │ │ ├── TypeTest.php │ │ │ │ │ │ ├── UpdateCustomOptionsTest.php │ │ │ │ │ │ ├── UpdateProductWebsiteTest.php │ │ │ │ │ │ ├── UrlTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── service_product_create.php │ │ │ │ │ │ │ └── service_product_create_rollback.php │ │ │ │ │ ├── ProductExternalTest.php │ │ │ │ │ ├── ProductGettersTest.php │ │ │ │ │ ├── ProductHydratorTest.php │ │ │ │ │ ├── ProductLink │ │ │ │ │ │ └── ProductLinkQueryTest.php │ │ │ │ │ ├── ProductPriceTest.php │ │ │ │ │ ├── ProductPriceWithDimensionTest.php │ │ │ │ │ ├── ProductRepositoryTest.php │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ ├── ProductWebsiteLinkRepositoryTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ └── WebsiteAttributesSynchronizerTest.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ ├── GalleryTest.php │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ │ └── Eav │ │ │ │ │ │ │ │ │ └── SourceTest.php │ │ │ │ │ │ │ └── Link │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── category_multiple_stores.php │ │ │ │ │ │ │ ├── few_simple_products.php │ │ │ │ │ │ │ ├── few_simple_products_rollback.php │ │ │ │ │ │ │ ├── product_simple.php │ │ │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ │ │ ├── website_attribute_sync.php │ │ │ │ │ │ │ ├── website_attribute_sync_flag.php │ │ │ │ │ │ │ ├── website_attribute_sync_flag_rollback.php │ │ │ │ │ │ │ └── website_attribute_sync_rollback.php │ │ │ │ │ ├── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ └── Url │ │ │ │ │ │ │ └── Rewrite │ │ │ │ │ │ │ └── SuffixTest.php │ │ │ │ │ └── Webapi │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Option │ │ │ │ │ │ └── Type │ │ │ │ │ │ └── File │ │ │ │ │ │ └── ProcessorTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── Compare │ │ │ │ │ │ └── BindCustomerLoginObserverTest.php │ │ │ │ │ └── SwitchPriceAttributeScopeOnConfigChangeTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── Model │ │ │ │ │ │ └── AttributeSetRepository │ │ │ │ │ │ └── RemoveProductsTest.php │ │ │ │ ├── Pricing │ │ │ │ │ └── Render │ │ │ │ │ │ ├── FinalPriceBox │ │ │ │ │ │ └── RenderingBasedOnIsProductListFlagTest.php │ │ │ │ │ │ ├── FinalPriceBoxTest.php │ │ │ │ │ │ └── PriceTypes │ │ │ │ │ │ ├── CombinationAbstract.php │ │ │ │ │ │ ├── CombinationTest.php │ │ │ │ │ │ └── MultiWebsiteCombinationTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Attributes │ │ │ │ │ │ └── ListingTest.php │ │ │ │ │ │ ├── Form │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ │ ├── AbstractEavTest.php │ │ │ │ │ │ │ ├── AlertsTest.php │ │ │ │ │ │ │ ├── CategoriesTest.php │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ ├── AttributeSetGroupsTest.php │ │ │ │ │ │ │ ├── BooleanAttributeTest.php │ │ │ │ │ │ │ ├── DateAttributeTest.php │ │ │ │ │ │ │ ├── DecimalAttributeTest.php │ │ │ │ │ │ │ ├── DefaultAttributesTest.php │ │ │ │ │ │ │ ├── ImageAttributeTest.php │ │ │ │ │ │ │ ├── MultiselectAttributeTest.php │ │ │ │ │ │ │ ├── SelectAttributeTest.php │ │ │ │ │ │ │ └── VarcharAttributeTest.php │ │ │ │ │ │ │ ├── EavTest.php │ │ │ │ │ │ │ ├── LayoutUpdateTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── eav_expected_data_output.php │ │ │ │ │ │ │ ├── eav_expected_meta_output.php │ │ │ │ │ │ │ ├── eav_expected_meta_output_w_default.php │ │ │ │ │ │ │ ├── expected_categories.php │ │ │ │ │ │ │ └── input_meta_for_categories.php │ │ │ │ │ │ ├── LimitTotalNumberOfProductsTest.php │ │ │ │ │ │ ├── QuantityAndStockStatusTest.php │ │ │ │ │ │ └── Related │ │ │ │ │ │ ├── AbstractRelationsDataProviderTest.php │ │ │ │ │ │ ├── CrossSellDataProviderTest.php │ │ │ │ │ │ └── UpSellDataProviderTest.php │ │ │ │ ├── WidgetTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── MultiselectSourceMock.php │ │ │ │ │ ├── attribute_page_layout_default.php │ │ │ │ │ ├── attribute_page_layout_default_rollback.php │ │ │ │ │ ├── attribute_set_based_on_default.php │ │ │ │ │ ├── attribute_set_based_on_default_rollback.php │ │ │ │ │ ├── attribute_set_based_on_default_set.php │ │ │ │ │ ├── attribute_set_based_on_default_with_custom_group.php │ │ │ │ │ ├── attribute_set_based_on_default_with_custom_group_rollback.php │ │ │ │ │ ├── attribute_set_based_on_default_without_country_of_manufacture.php │ │ │ │ │ ├── attribute_set_based_on_default_without_country_of_manufacture_rollback.php │ │ │ │ │ ├── attribute_set_with_image_attribute.php │ │ │ │ │ ├── attribute_set_with_image_attribute_rollback.php │ │ │ │ │ ├── attribute_set_with_product.php │ │ │ │ │ ├── attribute_set_with_product_rollback.php │ │ │ │ │ ├── attribute_set_with_renamed_group.php │ │ │ │ │ ├── catalog_category_image.php │ │ │ │ │ ├── catalog_category_image_rollback.php │ │ │ │ │ ├── catalog_category_product_reindex_all.php │ │ │ │ │ ├── catalog_category_with_apostrophe.php │ │ │ │ │ ├── catalog_category_with_apostrophe_rollback.php │ │ │ │ │ ├── catalog_category_with_doublequotes.php │ │ │ │ │ ├── catalog_category_with_image.php │ │ │ │ │ ├── catalog_category_with_image_rollback.php │ │ │ │ │ ├── catalog_category_with_long_image_name.php │ │ │ │ │ ├── catalog_category_with_long_image_name_rollback.php │ │ │ │ │ ├── catalog_category_with_missing_image.php │ │ │ │ │ ├── catalog_category_with_missing_image_rollback.php │ │ │ │ │ ├── catalog_category_with_slash.php │ │ │ │ │ ├── catalog_product_category_reindex_all.php │ │ │ │ │ ├── catalog_tmp_category_image.php │ │ │ │ │ ├── catalog_tmp_category_image_rollback.php │ │ │ │ │ ├── categories.php │ │ │ │ │ ├── categories_disabled.php │ │ │ │ │ ├── categories_disabled_rollback.php │ │ │ │ │ ├── categories_no_products.php │ │ │ │ │ ├── categories_no_products_rollback.php │ │ │ │ │ ├── categories_no_products_with_two_tree.php │ │ │ │ │ ├── categories_no_products_with_two_tree_rollback.php │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ ├── categories_sorted.php │ │ │ │ │ ├── categories_sorted_rollback.php │ │ │ │ │ ├── category.php │ │ │ │ │ ├── category_anchor.php │ │ │ │ │ ├── category_anchor_rollback.php │ │ │ │ │ ├── category_attribute.php │ │ │ │ │ ├── category_attribute_rollback.php │ │ │ │ │ ├── category_backend.php │ │ │ │ │ ├── category_backend_rollback.php │ │ │ │ │ ├── category_custom_short_description_attribute.php │ │ │ │ │ ├── category_custom_short_description_attribute_rollback.php │ │ │ │ │ ├── category_duplicates.php │ │ │ │ │ ├── category_duplicates_rollback.php │ │ │ │ │ ├── category_enabled_for_store.php │ │ │ │ │ ├── category_enabled_for_store_rollback.php │ │ │ │ │ ├── category_in_second_root_category.php │ │ │ │ │ ├── category_in_second_root_category_rollback.php │ │ │ │ │ ├── category_on_second_store.php │ │ │ │ │ ├── category_on_second_store_rollback.php │ │ │ │ │ ├── category_product.php │ │ │ │ │ ├── category_product_assigned_to_website.php │ │ │ │ │ ├── category_product_assigned_to_website_rollback.php │ │ │ │ │ ├── category_product_rollback.php │ │ │ │ │ ├── category_rollback.php │ │ │ │ │ ├── category_specific_fields.php │ │ │ │ │ ├── category_specific_fields_rollback.php │ │ │ │ │ ├── category_tree.php │ │ │ │ │ ├── category_tree_rollback.php │ │ │ │ │ ├── category_tree_with_products.php │ │ │ │ │ ├── category_tree_with_products_rollback.php │ │ │ │ │ ├── category_with_cms_block.php │ │ │ │ │ ├── category_with_cms_block_rollback.php │ │ │ │ │ ├── category_with_different_price_products.php │ │ │ │ │ ├── category_with_different_price_products_on_two_websites.php │ │ │ │ │ ├── category_with_different_price_products_on_two_websites_rollback.php │ │ │ │ │ ├── category_with_different_price_products_rollback.php │ │ │ │ │ ├── category_with_parent_anchor.php │ │ │ │ │ ├── category_with_parent_anchor_rollback.php │ │ │ │ │ ├── category_with_position.php │ │ │ │ │ ├── category_with_position_rollback.php │ │ │ │ │ ├── category_with_three_products.php │ │ │ │ │ ├── category_with_three_products_rollback.php │ │ │ │ │ ├── category_with_two_products.php │ │ │ │ │ ├── category_with_two_products_rollback.php │ │ │ │ │ ├── category_with_two_stores.php │ │ │ │ │ ├── category_with_two_stores_rollback.php │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ ├── configurable_products_with_custom_attribute_layered_navigation.php │ │ │ │ │ ├── configurable_products_with_custom_attribute_layered_navigation_rollback.php │ │ │ │ │ ├── customer_compare_list_with_simple_product.php │ │ │ │ │ ├── customer_compare_list_with_simple_product_rollback.php │ │ │ │ │ ├── detach_product_website_quene_data.php │ │ │ │ │ ├── detach_product_website_quene_data_rollback.php │ │ │ │ │ ├── dropdown_attribute.php │ │ │ │ │ ├── dropdown_attribute_rollback.php │ │ │ │ │ ├── dropdown_attribute_with_html.php │ │ │ │ │ ├── dropdown_attribute_with_html_rollback.php │ │ │ │ │ ├── empty.csv │ │ │ │ │ ├── empty_attribute_group.php │ │ │ │ │ ├── empty_attribute_group_rollback.php │ │ │ │ │ ├── enable_catalog_product_reindex_schedule.php │ │ │ │ │ ├── enable_catalog_product_reindex_schedule_rollback.php │ │ │ │ │ ├── enable_price_index_schedule.php │ │ │ │ │ ├── enable_price_index_schedule_rollback.php │ │ │ │ │ ├── enable_reindex_schedule.php │ │ │ │ │ ├── enable_reindex_schedule_rollback.php │ │ │ │ │ ├── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── filterable_attributes.php │ │ │ │ │ ├── inactive_category.php │ │ │ │ │ ├── inactive_category_rollback.php │ │ │ │ │ ├── indexer_catalog_category.php │ │ │ │ │ ├── indexer_catalog_category_rollback.php │ │ │ │ │ ├── indexer_catalog_products.php │ │ │ │ │ ├── indexer_catalog_products_rollback.php │ │ │ │ │ ├── magento_empty.jpg │ │ │ │ │ ├── magento_image with space in name.jpg │ │ │ │ │ ├── magento_image.gif │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ ├── magento_long_image_name_magento_long_image_name_magento_long_image_name.jpg │ │ │ │ │ ├── magento_small_image.jpg │ │ │ │ │ ├── magento_thumbnail.jpg │ │ │ │ │ ├── magento_wrong.png │ │ │ │ │ ├── multiple_mixed_products.php │ │ │ │ │ ├── multiple_mixed_products_2.php │ │ │ │ │ ├── multiple_mixed_products_2_rollback.php │ │ │ │ │ ├── multiple_mixed_products_rollback.php │ │ │ │ │ ├── multiple_products.php │ │ │ │ │ ├── multiple_products_rollback.php │ │ │ │ │ ├── multiple_products_staged.php │ │ │ │ │ ├── multiple_products_staged_rollback.php │ │ │ │ │ ├── multiple_products_with_different_sku_and_name.php │ │ │ │ │ ├── multiple_products_with_different_sku_and_name_rollback.php │ │ │ │ │ ├── multiple_products_with_disabled_virtual_product.php │ │ │ │ │ ├── multiple_products_with_disabled_virtual_product_rollback.php │ │ │ │ │ ├── multiple_products_with_few_out_of_stock.php │ │ │ │ │ ├── multiple_products_with_few_out_of_stock_rollback.php │ │ │ │ │ ├── multiple_products_with_non_saleable_product.php │ │ │ │ │ ├── multiple_products_with_non_saleable_product_rollback.php │ │ │ │ │ ├── multiple_related_products.php │ │ │ │ │ ├── multiple_related_products_rollback.php │ │ │ │ │ ├── multiselect_attribute.php │ │ │ │ │ ├── multiselect_attribute_rollback.php │ │ │ │ │ ├── multiselect_attribute_with_html.php │ │ │ │ │ ├── multiselect_attribute_with_html_rollback.php │ │ │ │ │ ├── multiselect_attribute_with_incorrect_values.php │ │ │ │ │ ├── multiselect_attribute_with_source_model.php │ │ │ │ │ ├── multiselect_attribute_with_source_model_rollback.php │ │ │ │ │ ├── order_item_with_product_and_custom_options.php │ │ │ │ │ ├── order_item_with_product_and_custom_options_rollback.php │ │ │ │ │ ├── out_of_stock_product_with_category.php │ │ │ │ │ ├── out_of_stock_product_with_category_rollback.php │ │ │ │ │ ├── price_row_fixture.php │ │ │ │ │ ├── price_row_fixture_rollback.php │ │ │ │ │ ├── product_associated.php │ │ │ │ │ ├── product_associated_rollback.php │ │ │ │ │ ├── product_attribute.php │ │ │ │ │ ├── product_attribute_rollback.php │ │ │ │ │ ├── product_attribute_with_invalid_apply_to.php │ │ │ │ │ ├── product_boolean_attribute.php │ │ │ │ │ ├── product_boolean_attribute_rollback.php │ │ │ │ │ ├── product_date_attribute.php │ │ │ │ │ ├── product_date_attribute_rollback.php │ │ │ │ │ ├── product_datetime_attribute.php │ │ │ │ │ ├── product_datetime_attribute_rollback.php │ │ │ │ │ ├── product_decimal_attribute.php │ │ │ │ │ ├── product_decimal_attribute_rollback.php │ │ │ │ │ ├── product_different_store_prices.php │ │ │ │ │ ├── product_different_store_prices_rollback.php │ │ │ │ │ ├── product_dropdown_attribute.php │ │ │ │ │ ├── product_dropdown_attribute_rollback.php │ │ │ │ │ ├── product_group_prices_rollback.php │ │ │ │ │ ├── product_has_tier_price_show_as_low_as.php │ │ │ │ │ ├── product_has_tier_price_show_as_low_as_rollback.php │ │ │ │ │ ├── product_image.php │ │ │ │ │ ├── product_image_attribute.php │ │ │ │ │ ├── product_image_attribute_rollback.php │ │ │ │ │ ├── product_image_rollback.php │ │ │ │ │ ├── product_in_compare_list_with_customer.php │ │ │ │ │ ├── product_in_compare_list_with_customer_rollback.php │ │ │ │ │ ├── product_in_multiple_categories.php │ │ │ │ │ ├── product_in_multiple_categories_rollback.php │ │ │ │ │ ├── product_in_nested_anchor_categories.php │ │ │ │ │ ├── product_in_nested_anchor_categories_rollback.php │ │ │ │ │ ├── product_multistore_different_short_description.php │ │ │ │ │ ├── product_multistore_different_short_description_rollback.php │ │ │ │ │ ├── product_multiwebsite_different_description.php │ │ │ │ │ ├── product_multiwebsite_different_description_rollback.php │ │ │ │ │ ├── product_out_of_stock_with_multiselect_attribute.php │ │ │ │ │ ├── product_out_of_stock_with_multiselect_attribute_rollback.php │ │ │ │ │ ├── product_price_attribute.php │ │ │ │ │ ├── product_price_attribute_rollback.php │ │ │ │ │ ├── product_simple.php │ │ │ │ │ ├── product_simple_add_video.php │ │ │ │ │ ├── product_simple_backorders_no.php │ │ │ │ │ ├── product_simple_backorders_no_rollback.php │ │ │ │ │ ├── product_simple_disabled.php │ │ │ │ │ ├── product_simple_duplicated.php │ │ │ │ │ ├── product_simple_duplicated_rollback.php │ │ │ │ │ ├── product_simple_multistore.php │ │ │ │ │ ├── product_simple_multistore_rollback.php │ │ │ │ │ ├── product_simple_multistore_with_url_key.php │ │ │ │ │ ├── product_simple_multistore_with_url_key_rollback.php │ │ │ │ │ ├── product_simple_out_of_stock.php │ │ │ │ │ ├── product_simple_out_of_stock_rollback.php │ │ │ │ │ ├── product_simple_out_of_stock_without_categories.php │ │ │ │ │ ├── product_simple_out_of_stock_without_categories_rollback.php │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ ├── product_simple_tax_none.php │ │ │ │ │ ├── product_simple_tax_none_rollback.php │ │ │ │ │ ├── product_simple_with_admin_store.php │ │ │ │ │ ├── product_simple_with_all_fields.php │ │ │ │ │ ├── product_simple_with_all_fields_rollback.php │ │ │ │ │ ├── product_simple_with_category_which_has_parent_category.php │ │ │ │ │ ├── product_simple_with_category_which_has_parent_category_rollback.php │ │ │ │ │ ├── product_simple_with_country_of_manufacture.php │ │ │ │ │ ├── product_simple_with_country_of_manufacture_rollback.php │ │ │ │ │ ├── product_simple_with_custom_attribute.php │ │ │ │ │ ├── product_simple_with_custom_attribute_in_flat.php │ │ │ │ │ ├── product_simple_with_custom_attribute_in_flat_rollback.php │ │ │ │ │ ├── product_simple_with_custom_attribute_rollback.php │ │ │ │ │ ├── product_simple_with_custom_file_option.php │ │ │ │ │ ├── product_simple_with_custom_file_option_rollback.php │ │ │ │ │ ├── product_simple_with_custom_option_text_area.php │ │ │ │ │ ├── product_simple_with_custom_options.php │ │ │ │ │ ├── product_simple_with_custom_options_rollback.php │ │ │ │ │ ├── product_simple_with_custom_store_scope_attribute.php │ │ │ │ │ ├── product_simple_with_custom_store_scope_attribute_rollback.php │ │ │ │ │ ├── product_simple_with_date_attribute.php │ │ │ │ │ ├── product_simple_with_date_attribute_rollback.php │ │ │ │ │ ├── product_simple_with_decimal_qty.php │ │ │ │ │ ├── product_simple_with_decimal_qty_rollback.php │ │ │ │ │ ├── product_simple_with_design_attributes.php │ │ │ │ │ ├── product_simple_with_design_attributes_rollback.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_logged_user.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_logged_user_rollback.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_not_logged_user.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_not_logged_user_rollback.php │ │ │ │ │ ├── product_simple_with_fixed_tier_price_rollback.php │ │ │ │ │ ├── product_simple_with_full_option_set.php │ │ │ │ │ ├── product_simple_with_full_option_set_rollback.php │ │ │ │ │ ├── product_simple_with_image.php │ │ │ │ │ ├── product_simple_with_media.php │ │ │ │ │ ├── product_simple_with_media_gallery_entries.php │ │ │ │ │ ├── product_simple_with_media_gallery_entries_rollback.php │ │ │ │ │ ├── product_simple_with_media_rollback.php │ │ │ │ │ ├── product_simple_with_non_latin_url_key.php │ │ │ │ │ ├── product_simple_with_non_latin_url_key_rollback.php │ │ │ │ │ ├── product_simple_with_options.php │ │ │ │ │ ├── product_simple_with_options_rollback.php │ │ │ │ │ ├── product_simple_with_percent_tier_price.php │ │ │ │ │ ├── product_simple_with_percent_tier_price_rollback.php │ │ │ │ │ ├── product_simple_with_spaces_in_url_key.php │ │ │ │ │ ├── product_simple_with_spaces_in_url_key_rollback.php │ │ │ │ │ ├── product_simple_with_two_custom_file_options.php │ │ │ │ │ ├── product_simple_with_two_custom_file_options_rollback.php │ │ │ │ │ ├── product_simple_with_url_key.php │ │ │ │ │ ├── product_simple_with_url_key_rollback.php │ │ │ │ │ ├── product_simple_with_wholesale_tier_price.php │ │ │ │ │ ├── product_simple_with_wholesale_tier_price_rollback.php │ │ │ │ │ ├── product_simple_with_wrong_url_key.php │ │ │ │ │ ├── product_simple_with_wrong_url_key_rollback.php │ │ │ │ │ ├── product_simple_without_custom_options.php │ │ │ │ │ ├── product_simple_without_custom_options_rollback.php │ │ │ │ │ ├── product_simple_xss.php │ │ │ │ │ ├── product_simple_xss_rollback.php │ │ │ │ │ ├── product_special_price.php │ │ │ │ │ ├── product_special_price_rollback.php │ │ │ │ │ ├── product_system_attribute.php │ │ │ │ │ ├── product_system_attribute_rollback.php │ │ │ │ │ ├── product_text_attribute.php │ │ │ │ │ ├── product_text_attribute_rollback.php │ │ │ │ │ ├── product_text_editor_attribute.php │ │ │ │ │ ├── product_text_editor_attribute_rollback.php │ │ │ │ │ ├── product_two_websites.php │ │ │ │ │ ├── product_two_websites_rollback.php │ │ │ │ │ ├── product_varchar_attribute.php │ │ │ │ │ ├── product_varchar_attribute_rollback.php │ │ │ │ │ ├── product_virtual.php │ │ │ │ │ ├── product_virtual_in_stock.php │ │ │ │ │ ├── product_virtual_in_stock_rollback.php │ │ │ │ │ ├── product_virtual_out_of_stock.php │ │ │ │ │ ├── product_virtual_out_of_stock_rollback.php │ │ │ │ │ ├── product_virtual_rollback.php │ │ │ │ │ ├── product_virtual_with_options.php │ │ │ │ │ ├── product_virtual_with_options_rollback.php │ │ │ │ │ ├── product_with_category.php │ │ │ │ │ ├── product_with_category_rollback.php │ │ │ │ │ ├── product_with_disabled_image.php │ │ │ │ │ ├── product_with_disabled_image_rollback.php │ │ │ │ │ ├── product_with_dropdown_option.php │ │ │ │ │ ├── product_with_dropdown_option_rollback.php │ │ │ │ │ ├── product_with_image.php │ │ │ │ │ ├── product_with_image_no_options.php │ │ │ │ │ ├── product_with_image_no_options_rollback.php │ │ │ │ │ ├── product_with_image_rollback.php │ │ │ │ │ ├── product_with_image_without_types.php │ │ │ │ │ ├── product_with_image_without_types_rollback.php │ │ │ │ │ ├── product_with_media_gallery.php │ │ │ │ │ ├── product_with_media_gallery_rollback.php │ │ │ │ │ ├── product_with_multiple_images.php │ │ │ │ │ ├── product_with_multiple_images_rollback.php │ │ │ │ │ ├── product_with_options.php │ │ │ │ │ ├── product_with_options_rollback.php │ │ │ │ │ ├── product_with_price_on_second_website.php │ │ │ │ │ ├── product_with_price_on_second_website_rollback.php │ │ │ │ │ ├── product_with_test_attribute_set.php │ │ │ │ │ ├── product_with_test_attribute_set_rollback.php │ │ │ │ │ ├── product_with_two_websites.php │ │ │ │ │ ├── product_with_two_websites_rollback.php │ │ │ │ │ ├── product_with_varchar_attribute.php │ │ │ │ │ ├── product_with_varchar_attribute_rollback.php │ │ │ │ │ ├── product_without_options.php │ │ │ │ │ ├── product_without_options_rollback.php │ │ │ │ │ ├── product_without_options_with_stock_data.php │ │ │ │ │ ├── product_without_options_with_stock_data_rollback.php │ │ │ │ │ ├── products.php │ │ │ │ │ ├── products_crosssell.php │ │ │ │ │ ├── products_crosssell_rollback.php │ │ │ │ │ ├── products_for_relevance_sorting.php │ │ │ │ │ ├── products_for_relevance_sorting_rollback.php │ │ │ │ │ ├── products_for_search.php │ │ │ │ │ ├── products_for_search_rollback.php │ │ │ │ │ ├── products_for_search_with_custom_price_attribute.php │ │ │ │ │ ├── products_for_search_with_custom_price_attribute_rollback.php │ │ │ │ │ ├── products_in_category.php │ │ │ │ │ ├── products_in_category_rollback.php │ │ │ │ │ ├── products_in_different_stores.php │ │ │ │ │ ├── products_in_different_stores_rollback.php │ │ │ │ │ ├── products_list.php │ │ │ │ │ ├── products_list_rollback.php │ │ │ │ │ ├── products_new.php │ │ │ │ │ ├── products_new_rollback.php │ │ │ │ │ ├── products_related.php │ │ │ │ │ ├── products_related_disabled.php │ │ │ │ │ ├── products_related_disabled_in_store.php │ │ │ │ │ ├── products_related_disabled_in_store_rollback.php │ │ │ │ │ ├── products_related_disabled_rollback.php │ │ │ │ │ ├── products_related_multiple.php │ │ │ │ │ ├── products_related_multiple_rollback.php │ │ │ │ │ ├── products_related_rollback.php │ │ │ │ │ ├── products_rollback.php │ │ │ │ │ ├── products_upsell.php │ │ │ │ │ ├── products_upsell_rollback.php │ │ │ │ │ ├── products_with_boolean_attribute.php │ │ │ │ │ ├── products_with_boolean_attribute_rollback.php │ │ │ │ │ ├── products_with_different_price.php │ │ │ │ │ ├── products_with_different_price_rollback.php │ │ │ │ │ ├── products_with_dropdown_attribute.php │ │ │ │ │ ├── products_with_dropdown_attribute_rollback.php │ │ │ │ │ ├── products_with_dropdown_attribute_without_all_store_view.php │ │ │ │ │ ├── products_with_dropdown_attribute_without_all_store_view_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_attribute.php │ │ │ │ │ ├── products_with_layered_navigation_attribute_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_attribute_store_options.php │ │ │ │ │ ├── products_with_layered_navigation_attribute_store_options_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_attributes.php │ │ │ │ │ ├── products_with_layered_navigation_attributes_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_custom_attribute.php │ │ │ │ │ ├── products_with_layered_navigation_custom_attribute_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_with_multiselect_attribute.php │ │ │ │ │ ├── products_with_layered_navigation_with_multiselect_attribute_rollback.php │ │ │ │ │ ├── products_with_multiselect_attribute.php │ │ │ │ │ ├── products_with_multiselect_attribute_rollback.php │ │ │ │ │ ├── products_with_multiselect_attribute_with_source_model.php │ │ │ │ │ ├── products_with_multiselect_attribute_with_source_model_rollback.php │ │ │ │ │ ├── products_with_not_empty_layered_navigation_attribute.php │ │ │ │ │ ├── products_with_not_empty_layered_navigation_attribute_rollback.php │ │ │ │ │ ├── products_with_unique_input_attribute.php │ │ │ │ │ ├── products_with_websites_and_stores.php │ │ │ │ │ ├── products_with_websites_and_stores_rollback.php │ │ │ │ │ ├── quantity_and_stock_status_attribute_used_in_grid.php │ │ │ │ │ ├── quantity_and_stock_status_attribute_used_in_grid_rollback.php │ │ │ │ │ ├── quote_with_product_and_custom_options.php │ │ │ │ │ ├── quote_with_product_and_custom_options_rollback.php │ │ │ │ │ ├── reindex_catalog_category_flat.php │ │ │ │ │ ├── reindex_catalog_inventory_stock.php │ │ │ │ │ ├── row_fixture.php │ │ │ │ │ ├── row_fixture_rollback.php │ │ │ │ │ ├── second_product_simple.php │ │ │ │ │ ├── second_product_simple_rollback.php │ │ │ │ │ ├── second_root_category.php │ │ │ │ │ ├── second_root_category_rollback.php │ │ │ │ │ ├── second_website.php │ │ │ │ │ ├── second_website_rollback.php │ │ │ │ │ ├── simple_product_cyrillic_symbols.php │ │ │ │ │ ├── simple_product_cyrillic_symbols_rollback.php │ │ │ │ │ ├── simple_product_disabled.php │ │ │ │ │ ├── simple_product_disabled_rollback.php │ │ │ │ │ ├── simple_product_min_max_sale_qty.php │ │ │ │ │ ├── simple_product_min_max_sale_qty_rollback.php │ │ │ │ │ ├── simple_product_with_custom_design.php │ │ │ │ │ ├── simple_product_with_custom_design_rollback.php │ │ │ │ │ ├── simple_product_with_qty_increments.php │ │ │ │ │ ├── simple_product_with_qty_increments_rollback.php │ │ │ │ │ ├── simple_product_with_tier_price_and_decimal_qty.php │ │ │ │ │ ├── simple_product_with_tier_price_and_decimal_qty_rollback.php │ │ │ │ │ ├── simple_product_with_tier_price_equal_zero.php │ │ │ │ │ ├── simple_product_with_tier_price_equal_zero_rollback.php │ │ │ │ │ ├── simple_product_with_tier_price_for_logged_user.php │ │ │ │ │ ├── simple_product_with_tier_price_for_logged_user_rollback.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_logged_in_group.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_logged_in_group_rollback.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_multiple_groups.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_multiple_groups_rollback.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_not_logged_in_group.php │ │ │ │ │ ├── simple_product_with_tier_prices_for_not_logged_in_group_rollback.php │ │ │ │ │ ├── simple_products_not_visible_individually.php │ │ │ │ │ ├── simple_products_not_visible_individually_rollback.php │ │ │ │ │ ├── taxable_simple_product.php │ │ │ │ │ ├── taxable_simple_product_rollback.php │ │ │ │ │ ├── three_simple_products_with_tier_price.php │ │ │ │ │ ├── three_simple_products_with_tier_price_rollback.php │ │ │ │ │ ├── two_simple_products_with_tier_price.php │ │ │ │ │ ├── two_simple_products_with_tier_price_rollback.php │ │ │ │ │ ├── unique_input_attribute.php │ │ │ │ │ ├── update_product_website_quene_data.php │ │ │ │ │ ├── update_product_website_quene_data_rollback.php │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ ├── url_rewrites_invalid.php │ │ │ │ │ ├── url_rewrites_rollback.php │ │ │ │ │ ├── validate_image.php │ │ │ │ │ ├── validate_image_info.php │ │ │ │ │ ├── validate_image_info_another.php │ │ │ │ │ ├── validate_image_info_another_rollback.php │ │ │ │ │ ├── validate_image_info_rollback.php │ │ │ │ │ ├── validate_image_rollback.php │ │ │ │ │ ├── visitor_compare_list.php │ │ │ │ │ ├── visitor_compare_list_rollback.php │ │ │ │ │ └── watermark.jpg │ │ │ │ └── controllers │ │ │ │ │ └── _files │ │ │ │ │ ├── attribute_system.php │ │ │ │ │ ├── attribute_system_popup.php │ │ │ │ │ ├── attribute_system_with_applyto_data.php │ │ │ │ │ ├── attribute_user_defined.php │ │ │ │ │ ├── product_image.png │ │ │ │ │ ├── products.php │ │ │ │ │ └── products_rollback.php │ │ │ │ ├── CatalogGraphQl │ │ │ │ └── Model │ │ │ │ │ └── Config │ │ │ │ │ └── AttributeReaderTest.php │ │ │ │ ├── CatalogImportExport │ │ │ │ ├── Model │ │ │ │ │ ├── AbstractProductExportImportTestCase.php │ │ │ │ │ ├── Export │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Import │ │ │ │ │ │ ├── ImportWithNotExistImagesTest.php │ │ │ │ │ │ ├── ImportWithSharedImagesTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── AbstractTest.php │ │ │ │ │ │ ├── ProductTest │ │ │ │ │ │ │ ├── ProductCategoriesTest.php │ │ │ │ │ │ │ ├── ProductImagesTest.php │ │ │ │ │ │ │ ├── ProductImportImagesTest.php │ │ │ │ │ │ │ ├── ProductMultipleStoresTest.php │ │ │ │ │ │ │ ├── ProductOptionsTest.php │ │ │ │ │ │ │ ├── ProductOtherTest.php │ │ │ │ │ │ │ ├── ProductStockTest.php │ │ │ │ │ │ │ ├── ProductUrlKeyTest.php │ │ │ │ │ │ │ └── ProductValidationTest.php │ │ │ │ │ │ ├── ProductTestBase.php │ │ │ │ │ │ ├── UploaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── custom_attributes.php │ │ │ │ │ │ │ ├── custom_attributes_rollback.php │ │ │ │ │ │ │ ├── custom_category_store_media_disabled.php │ │ │ │ │ │ │ ├── custom_category_store_media_disabled_rollback.php │ │ │ │ │ │ │ ├── disable_product.csv │ │ │ │ │ │ │ ├── enable_product.csv │ │ │ │ │ │ │ ├── hide_from_product_page_images.csv │ │ │ │ │ │ │ ├── import_categories_with_long_names.csv │ │ │ │ │ │ │ ├── import_change_image_label_for_storeview.csv │ │ │ │ │ │ │ ├── import_configurable_product_multistore.csv │ │ │ │ │ │ │ ├── import_hide_image_for_storeview.csv │ │ │ │ │ │ │ ├── import_image_name_without_slash.csv │ │ │ │ │ │ │ ├── import_media.csv │ │ │ │ │ │ │ ├── import_media_additional_images.csv │ │ │ │ │ │ │ ├── import_media_additional_images_storeview.csv │ │ │ │ │ │ │ ├── import_media_additional_images_with_wrong_url.csv │ │ │ │ │ │ │ ├── import_media_additional_long_name_image.csv │ │ │ │ │ │ │ ├── import_media_existing_images.csv │ │ │ │ │ │ │ ├── import_media_hidden_images.csv │ │ │ │ │ │ │ ├── import_media_two_stores.csv │ │ │ │ │ │ │ ├── import_media_with_no_selection.csv │ │ │ │ │ │ │ ├── import_new_categories_custom_separator.csv │ │ │ │ │ │ │ ├── import_new_categories_default_separator.csv │ │ │ │ │ │ │ ├── import_product_with_empty_attribute_value.csv │ │ │ │ │ │ │ ├── import_with_filesystem_images.php │ │ │ │ │ │ │ ├── import_with_filesystem_images_rollback.php │ │ │ │ │ │ │ ├── magento_additional_image_error.jpg │ │ │ │ │ │ │ ├── magento_additional_image_four.jpg │ │ │ │ │ │ │ ├── magento_additional_image_one.jpg │ │ │ │ │ │ │ ├── magento_additional_image_three.jpg │ │ │ │ │ │ │ ├── magento_additional_image_two.jpg │ │ │ │ │ │ │ ├── media_import_image.php │ │ │ │ │ │ │ ├── media_import_image_rollback.php │ │ │ │ │ │ │ ├── product_tax_class_none_import.csv │ │ │ │ │ │ │ ├── product_to_import_invalid_weight.csv │ │ │ │ │ │ │ ├── product_with_custom_options.csv │ │ │ │ │ │ │ ├── product_with_custom_options_and_multiple_store_views.csv │ │ │ │ │ │ │ ├── product_with_custom_options_new.csv │ │ │ │ │ │ │ ├── product_with_custom_store_media_disabled.csv │ │ │ │ │ │ │ ├── product_without_custom_options.csv │ │ │ │ │ │ │ ├── products_duplicate_category.csv │ │ │ │ │ │ │ ├── products_multiple_stores.csv │ │ │ │ │ │ │ ├── products_to_check_duplicated_names.csv │ │ │ │ │ │ │ ├── products_to_check_duplicated_url_keys.csv │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys.csv │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys_mixed_chars_nums.csv │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys_multiple_stores.csv │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys_with_different_language.csv │ │ │ │ │ │ │ ├── products_to_import.csv │ │ │ │ │ │ │ ├── products_to_import_invalid_attribute_set.csv │ │ │ │ │ │ │ ├── products_to_import_with_additional_attributes.csv │ │ │ │ │ │ │ ├── products_to_import_with_backorders_disabled_and_not_0_qty.csv │ │ │ │ │ │ │ ├── products_to_import_with_backorders_enabled_and_0_qty.csv │ │ │ │ │ │ │ ├── products_to_import_with_category.csv │ │ │ │ │ │ │ ├── products_to_import_with_changed_sku_case.csv │ │ │ │ │ │ │ ├── products_to_import_with_datetime.csv │ │ │ │ │ │ │ ├── products_to_import_with_invalid_url_keys.csv │ │ │ │ │ │ │ ├── products_to_import_with_json_and_markup_attributes.csv │ │ │ │ │ │ │ ├── products_to_import_with_multiple_store.csv │ │ │ │ │ │ │ ├── products_to_import_with_new_attribute_set.csv │ │ │ │ │ │ │ ├── products_to_import_with_non_existing_image.csv │ │ │ │ │ │ │ ├── products_to_import_with_non_latin_url_keys.csv │ │ │ │ │ │ │ ├── products_to_import_with_product_links.csv │ │ │ │ │ │ │ ├── products_to_import_with_product_links_with_empty_data.csv │ │ │ │ │ │ │ ├── products_to_import_with_product_links_with_empty_value.csv │ │ │ │ │ │ │ ├── products_to_import_with_qty.csv │ │ │ │ │ │ │ ├── products_to_import_with_qty_zero_backorders_enabled.csv │ │ │ │ │ │ │ ├── products_to_import_with_qty_zero_only.csv │ │ │ │ │ │ │ ├── products_to_import_with_related.csv │ │ │ │ │ │ │ ├── products_to_import_with_spaces_in_url_keys.csv │ │ │ │ │ │ │ ├── products_to_import_with_two_stores.csv │ │ │ │ │ │ │ ├── products_to_import_with_use_config_settings.csv │ │ │ │ │ │ │ ├── products_to_import_with_valid_url_keys.csv │ │ │ │ │ │ │ ├── products_to_import_without_url_key_column.csv │ │ │ │ │ │ │ ├── products_to_import_without_url_keys.csv │ │ │ │ │ │ │ ├── products_to_import_without_url_keys_and_name.csv │ │ │ │ │ │ │ ├── products_to_import_zero_qty.csv │ │ │ │ │ │ │ ├── products_with_custom_multiselect_values_separator.csv │ │ │ │ │ │ │ ├── products_with_invalid_multiselect_values.csv │ │ │ │ │ │ │ └── products_with_two_store_views.csv │ │ │ │ │ └── ProductTest.php │ │ │ │ └── _files │ │ │ │ │ ├── catalog_import_products_with_same_images.csv │ │ │ │ │ ├── cataloginventory_stock_item_update_by_schedule.php │ │ │ │ │ ├── cataloginventory_stock_item_update_by_schedule_rollback.php │ │ │ │ │ ├── export_queue_product_with_images.php │ │ │ │ │ ├── export_queue_product_with_images_rollback.php │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ ├── product_export_data.php │ │ │ │ │ ├── product_export_data_rollback.php │ │ │ │ │ ├── product_export_data_special_chars.php │ │ │ │ │ ├── product_export_data_special_chars_rollback.php │ │ │ │ │ ├── product_export_with_broken_categories_path.php │ │ │ │ │ ├── product_export_with_broken_categories_path_rollback.php │ │ │ │ │ ├── product_export_with_categories.php │ │ │ │ │ ├── product_export_with_images.php │ │ │ │ │ ├── product_export_with_images_rollback.php │ │ │ │ │ ├── product_export_with_product_links_data.php │ │ │ │ │ ├── product_export_with_product_links_data_rollback.php │ │ │ │ │ ├── update_category_duplicates.php │ │ │ │ │ └── update_category_duplicates_rollback.php │ │ │ │ ├── CatalogInventory │ │ │ │ ├── Api │ │ │ │ │ └── StockItemSaveTest.php │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Field │ │ │ │ │ │ └── CustomergroupTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── BackordersTest.php │ │ │ │ │ ├── Indexer │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── ProductSearchTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── QuantityValidatorTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ └── DefaultStockTest.php │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ └── ItemTest.php │ │ │ │ │ ├── Stock │ │ │ │ │ │ └── ItemTest.php │ │ │ │ │ ├── StockItemSave │ │ │ │ │ │ ├── ByStockItemRepositoryTest.php │ │ │ │ │ │ ├── OnProductCreate │ │ │ │ │ │ │ ├── ByProductModel │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ └── ByProductRepository │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ ├── OnProductUpdate │ │ │ │ │ │ │ ├── ByProductModel │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ └── ByProductRepository │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ └── StockItemDataChecker.php │ │ │ │ │ └── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ ├── MinsaleqtyTest.php │ │ │ │ │ │ └── QtyincrementsTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── AddStockItemsObserverTest.php │ │ │ │ │ └── SaveInventoryDataObserverTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── AddQuantityFilterToCollectionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── configurable_options_advanced_inventory.php │ │ │ │ │ └── configurable_options_with_low_stock.php │ │ │ │ ├── CatalogRule │ │ │ │ ├── Model │ │ │ │ │ ├── CatalogRuleRepositoryTest.php │ │ │ │ │ ├── Indexer │ │ │ │ │ │ ├── BatchIndexTest.php │ │ │ │ │ │ ├── IndexerBuilderTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ ├── ProductRuleTest.php │ │ │ │ │ │ └── RuleProductTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── ConditionsToCollectionApplierTest.php │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── RuleTest.php │ │ │ │ └── _files │ │ │ │ │ ├── attribute.php │ │ │ │ │ ├── attribute_rollback.php │ │ │ │ │ ├── catalog_rule_10_off_not_logged.php │ │ │ │ │ ├── catalog_rule_10_off_not_logged_rollback.php │ │ │ │ │ ├── catalog_rule_25_customer_group_all.php │ │ │ │ │ ├── catalog_rule_25_customer_group_all_rollback.php │ │ │ │ │ ├── catalog_rule_50_registered_customer_group.php │ │ │ │ │ ├── catalog_rule_50_registered_customer_group_rollback.php │ │ │ │ │ ├── catalog_rule_6_off_logged_user.php │ │ │ │ │ ├── catalog_rule_6_off_logged_user_rollback.php │ │ │ │ │ ├── catalog_rule_for_category_999.php │ │ │ │ │ ├── catalog_rule_for_category_999_rollback.php │ │ │ │ │ ├── conditions_to_collection │ │ │ │ │ ├── attribute_sets.php │ │ │ │ │ ├── attribute_sets_rollback.php │ │ │ │ │ ├── categories.php │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ ├── products.php │ │ │ │ │ └── products_rollback.php │ │ │ │ │ ├── configurable_product.php │ │ │ │ │ ├── configurable_product_rollback.php │ │ │ │ │ ├── delete_catalog_rule_data.php │ │ │ │ │ ├── delete_catalog_rule_data_rollback.php │ │ │ │ │ ├── rule_adjust_final_price_to_discount_value_not_logged_user.php │ │ │ │ │ ├── rule_adjust_final_price_to_discount_value_not_logged_user_rollback.php │ │ │ │ │ ├── rule_adjust_final_price_to_this_percentage_not_logged_user.php │ │ │ │ │ ├── rule_adjust_final_price_to_this_percentage_not_logged_user_rollback.php │ │ │ │ │ ├── rule_apply_as_fixed_amount_not_logged_user.php │ │ │ │ │ ├── rule_apply_as_fixed_amount_not_logged_user_rollback.php │ │ │ │ │ ├── rule_apply_as_percentage_of_original_not_logged_user.php │ │ │ │ │ ├── rule_apply_as_percentage_of_original_not_logged_user_rollback.php │ │ │ │ │ ├── rule_by_attribute.php │ │ │ │ │ ├── rule_by_attribute_rollback.php │ │ │ │ │ ├── rule_by_category_ids.php │ │ │ │ │ ├── rule_by_category_ids_rollback.php │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off.php │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off_rollback.php │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off_tomorrow.php │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off_tomorrow_rollback.php │ │ │ │ │ ├── simple_products.php │ │ │ │ │ ├── simple_products_rollback.php │ │ │ │ │ ├── two_rules.php │ │ │ │ │ └── two_rules_rollback.php │ │ │ │ ├── CatalogRuleConfigurable │ │ │ │ ├── Model │ │ │ │ │ ├── Indexer │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── ProductRuleIndexerTest.php │ │ │ │ │ └── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ └── Configurable │ │ │ │ │ │ └── PriceTest.php │ │ │ │ └── _files │ │ │ │ │ ├── configurable_product_with_percent_rule.php │ │ │ │ │ ├── configurable_product_with_percent_rule_rollback.php │ │ │ │ │ ├── configurable_product_with_percent_rules_for_children.php │ │ │ │ │ └── configurable_product_with_percent_rules_for_children_rollback.php │ │ │ │ ├── CatalogSearch │ │ │ │ ├── Block │ │ │ │ │ ├── Advanced │ │ │ │ │ │ └── ResultTest.php │ │ │ │ │ ├── ResultTest.php │ │ │ │ │ └── TermTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Advanced │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── ResultTest.php │ │ │ │ │ ├── AjaxTest.php │ │ │ │ │ ├── Result │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ └── ResultTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Indexer │ │ │ │ │ │ ├── Fulltext │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ │ │ └── FullTest.php │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ │ └── CategoryTest.php │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ └── FulltextTest.php │ │ │ │ │ ├── Layer │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Fulltext │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── Search │ │ │ │ │ │ ├── AttributeSearchWeightTest.php │ │ │ │ │ │ └── RequestGeneratorTest.php │ │ │ │ └── _files │ │ │ │ │ ├── full_reindex.php │ │ │ │ │ ├── indexer_fulltext.php │ │ │ │ │ ├── indexer_fulltext_rollback.php │ │ │ │ │ ├── popular_query.php │ │ │ │ │ ├── product_configurable_not_available.php │ │ │ │ │ ├── product_configurable_not_available_rollback.php │ │ │ │ │ ├── product_configurable_two_options.php │ │ │ │ │ ├── product_configurable_two_options_rollback.php │ │ │ │ │ ├── product_configurable_with_single_child.php │ │ │ │ │ ├── product_configurable_with_single_child_rollback.php │ │ │ │ │ ├── product_for_search.php │ │ │ │ │ ├── product_for_search_rollback.php │ │ │ │ │ ├── product_for_search_with_hyphen_in_sku.php │ │ │ │ │ ├── product_for_search_with_hyphen_in_sku_rollback.php │ │ │ │ │ ├── product_for_search_with_underscore.php │ │ │ │ │ ├── product_for_search_with_underscore_rollback.php │ │ │ │ │ ├── products_for_index.php │ │ │ │ │ ├── products_for_index_rollback.php │ │ │ │ │ ├── products_for_sku_search_weight_score.php │ │ │ │ │ ├── products_for_sku_search_weight_score_rollback.php │ │ │ │ │ ├── query.php │ │ │ │ │ ├── query_redirect.php │ │ │ │ │ ├── requests.xml │ │ │ │ │ ├── search_attributes.php │ │ │ │ │ ├── search_attributes_rollback.php │ │ │ │ │ └── searchable_attribute.php │ │ │ │ ├── CatalogUrlRewrite │ │ │ │ ├── Fixtures │ │ │ │ │ ├── product_custom_url_key.php │ │ │ │ │ └── product_custom_url_key_rollback.php │ │ │ │ ├── Model │ │ │ │ │ ├── AbstractUrlRewriteTest.php │ │ │ │ │ ├── Category │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ └── StorageTest.php │ │ │ │ │ ├── CategoryUrlRewriteGeneratorTest.php │ │ │ │ │ ├── CategoryUrlRewriteTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── AnchorUrlRewriteGeneratorTest.php │ │ │ │ │ ├── ProductUrlRewriteGeneratorTest.php │ │ │ │ │ └── ProductUrlRewriteTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── CategoryProcessUrlRewriteSavingObserverTest.php │ │ │ │ │ ├── ProcessUrlRewriteOnChangeVisibilityObserverTest.php │ │ │ │ │ ├── ProductProcessUrlRewriteSavingObserverTest.php │ │ │ │ │ └── UrlRewriteHandlerTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── Catalog │ │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── AttributesTest.php │ │ │ │ │ │ └── Model │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── UpdateProductWebsiteUrlRewritesTest.php │ │ │ │ └── _files │ │ │ │ │ ├── categories.php │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ ├── categories_with_product_ids.php │ │ │ │ │ ├── categories_with_product_ids_rollback.php │ │ │ │ │ ├── categories_with_products.php │ │ │ │ │ ├── categories_with_products_rollback.php │ │ │ │ │ ├── categories_with_stores.php │ │ │ │ │ ├── categories_with_stores_rollback.php │ │ │ │ │ ├── category_with_products.php │ │ │ │ │ ├── category_with_products_rollback.php │ │ │ │ │ ├── issue34210.csv │ │ │ │ │ ├── issue34210_structure.php │ │ │ │ │ ├── issue34210_structure_rollback.php │ │ │ │ │ ├── product_invisible_multistore.php │ │ │ │ │ ├── product_invisible_multistore_rollback.php │ │ │ │ │ ├── product_rewrite_multistore.php │ │ │ │ │ ├── product_rewrite_multistore_rollback.php │ │ │ │ │ ├── product_simple.php │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ ├── product_with_category.php │ │ │ │ │ ├── product_with_category_empty_url_suffix.php │ │ │ │ │ ├── product_with_category_empty_url_suffix_rollback.php │ │ │ │ │ ├── product_with_category_rollback.php │ │ │ │ │ ├── product_with_stores.php │ │ │ │ │ ├── product_with_stores_rollback.php │ │ │ │ │ ├── products_invisible.php │ │ │ │ │ ├── products_invisible_rollback.php │ │ │ │ │ └── products_to_import_with_rewrites.csv │ │ │ │ ├── CatalogWidget │ │ │ │ ├── Block │ │ │ │ │ └── Product │ │ │ │ │ │ ├── ProductListTest.php │ │ │ │ │ │ └── Widget │ │ │ │ │ │ └── ConditionsTest.php │ │ │ │ └── Model │ │ │ │ │ └── Rule │ │ │ │ │ └── Condition │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Checkout │ │ │ │ ├── Api │ │ │ │ │ ├── GuestShippingInformationManagementTest.php │ │ │ │ │ └── ShippingInformationManagementTest.php │ │ │ │ ├── Block │ │ │ │ │ ├── Cart │ │ │ │ │ │ ├── AbstractCartTest.php │ │ │ │ │ │ ├── CrosssellTest.php │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── RendererTest.php │ │ │ │ │ ├── CartTest.php │ │ │ │ │ └── Checkout │ │ │ │ │ │ └── LayoutProcessorTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Cart │ │ │ │ │ │ ├── AddTest.php │ │ │ │ │ │ ├── Index │ │ │ │ │ │ │ └── CouponPostTest.php │ │ │ │ │ │ ├── UpdateItemOptionsTest.php │ │ │ │ │ │ └── UpdateItemQtyTest.php │ │ │ │ │ └── CartTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── CaptchaRateLimiterTest.php │ │ │ │ │ ├── CartTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── ShippingInformationManagementTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── Model │ │ │ │ │ │ └── Quote │ │ │ │ │ │ └── ResetQuoteAddressesTest.php │ │ │ │ ├── ViewModel │ │ │ │ │ └── CartTest.php │ │ │ │ └── _files │ │ │ │ │ ├── active_quote.php │ │ │ │ │ ├── active_quote_customer_not_default_store.php │ │ │ │ │ ├── active_quote_customer_not_default_store_rollback.php │ │ │ │ │ ├── active_quote_guest_not_default_store.php │ │ │ │ │ ├── active_quote_guest_not_default_store_rollback.php │ │ │ │ │ ├── active_quote_not_default_website.php │ │ │ │ │ ├── active_quote_not_default_website_rollback.php │ │ │ │ │ ├── active_quote_rollback.php │ │ │ │ │ ├── active_quote_with_downloadable_product.php │ │ │ │ │ ├── active_quote_with_downloadable_product_rollback.php │ │ │ │ │ ├── cart.php │ │ │ │ │ ├── cart_with_simple_product_and_custom_option_text_area.php │ │ │ │ │ ├── cart_with_simple_product_and_custom_options.php │ │ │ │ │ ├── customer_quote_on_second_website.php │ │ │ │ │ ├── customer_quote_on_second_website_rollback.php │ │ │ │ │ ├── customer_quote_ready_for_order.php │ │ │ │ │ ├── customer_quote_ready_for_order_rollback.php │ │ │ │ │ ├── customer_quote_with_items_simple_product_options.php │ │ │ │ │ ├── customer_quote_with_items_simple_product_options_rollback.php │ │ │ │ │ ├── customers.php │ │ │ │ │ ├── discount_10percent.php │ │ │ │ │ ├── discount_10percent_generalusers.php │ │ │ │ │ ├── discount_10percent_generalusers_rollback.php │ │ │ │ │ ├── discount_10percent_rollback.php │ │ │ │ │ ├── inactive_quote_with_customer.php │ │ │ │ │ ├── inactive_quote_with_customer_rollback.php │ │ │ │ │ ├── order_items.php │ │ │ │ │ ├── orders.php │ │ │ │ │ ├── product_bundle.php │ │ │ │ │ ├── product_with_custom_option.php │ │ │ │ │ ├── products.php │ │ │ │ │ ├── quote.php │ │ │ │ │ ├── quote_with_address.php │ │ │ │ │ ├── quote_with_address_and_shipping_method_saved.php │ │ │ │ │ ├── quote_with_address_and_shipping_method_saved_rollback.php │ │ │ │ │ ├── quote_with_address_another_customer.php │ │ │ │ │ ├── quote_with_address_another_customer_rollback.php │ │ │ │ │ ├── quote_with_address_rollback.php │ │ │ │ │ ├── quote_with_address_saved.php │ │ │ │ │ ├── quote_with_address_saved_rollback.php │ │ │ │ │ ├── quote_with_bundle_and_options.php │ │ │ │ │ ├── quote_with_bundle_and_options_rollback.php │ │ │ │ │ ├── quote_with_bundle_product.php │ │ │ │ │ ├── quote_with_bundle_product_rollback.php │ │ │ │ │ ├── quote_with_bundle_product_with_dynamic_price.php │ │ │ │ │ ├── quote_with_bundle_product_with_dynamic_price_rollback.php │ │ │ │ │ ├── quote_with_check_payment.php │ │ │ │ │ ├── quote_with_check_payment_rollback.php │ │ │ │ │ ├── quote_with_coupon_saved.php │ │ │ │ │ ├── quote_with_coupon_saved_rollback.php │ │ │ │ │ ├── quote_with_customer_without_address.php │ │ │ │ │ ├── quote_with_customer_without_address_rollback.php │ │ │ │ │ ├── quote_with_downloadable_product.php │ │ │ │ │ ├── quote_with_downloadable_product_rollback.php │ │ │ │ │ ├── quote_with_items_and_custom_options_saved.php │ │ │ │ │ ├── quote_with_items_and_custom_options_saved_rollback.php │ │ │ │ │ ├── quote_with_items_saved.php │ │ │ │ │ ├── quote_with_items_saved_rollback.php │ │ │ │ │ ├── quote_with_not_visible_individually_product.php │ │ │ │ │ ├── quote_with_not_visible_individually_product_rollback.php │ │ │ │ │ ├── quote_with_payment_saved.php │ │ │ │ │ ├── quote_with_payment_saved_rollback.php │ │ │ │ │ ├── quote_with_product_and_payment.php │ │ │ │ │ ├── quote_with_product_and_payment_rollback.php │ │ │ │ │ ├── quote_with_shipping_method.php │ │ │ │ │ ├── quote_with_shipping_method_and_items_categories.php │ │ │ │ │ ├── quote_with_shipping_method_and_items_categories_rollback.php │ │ │ │ │ ├── quote_with_shipping_method_rollback.php │ │ │ │ │ ├── quote_with_simple_product.php │ │ │ │ │ ├── quote_with_simple_product_and_custom_option.php │ │ │ │ │ ├── quote_with_simple_product_and_image.php │ │ │ │ │ ├── quote_with_simple_product_and_image_rollback.php │ │ │ │ │ ├── quote_with_simple_product_saved.php │ │ │ │ │ ├── quote_with_simple_product_saved_rollback.php │ │ │ │ │ ├── quote_with_simple_products.php │ │ │ │ │ ├── quote_with_simple_products_rollback.php │ │ │ │ │ ├── quote_with_taxable_product_and_customer.php │ │ │ │ │ ├── quote_with_taxable_product_and_customer_rollback.php │ │ │ │ │ ├── quote_with_virtual_product_and_address.php │ │ │ │ │ ├── quote_with_virtual_product_and_address_rollback.php │ │ │ │ │ ├── quote_with_virtual_product_saved.php │ │ │ │ │ ├── quote_with_virtual_product_saved_rollback.php │ │ │ │ │ ├── rollback_quote.php │ │ │ │ │ ├── set_product_min_in_cart.php │ │ │ │ │ ├── simple_product.php │ │ │ │ │ └── simple_product_rollback.php │ │ │ │ ├── CheckoutAgreements │ │ │ │ ├── Model │ │ │ │ │ ├── Api │ │ │ │ │ │ └── SearchCriteria │ │ │ │ │ │ │ └── ActiveStoreAgreementsFilterTest.php │ │ │ │ │ ├── Checkout │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ └── GuestValidationTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Grid │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── agreement_active_with_html_content.php │ │ │ │ │ ├── agreement_active_with_html_content_rollback.php │ │ │ │ │ ├── agreement_inactive_with_text_content.php │ │ │ │ │ ├── agreement_inactive_with_text_content_rollback.php │ │ │ │ │ ├── multi_agreements_active_with_text.php │ │ │ │ │ └── multi_agreements_active_with_text_rollback.php │ │ │ │ ├── Cms │ │ │ │ ├── Block │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ ├── PageTest.php │ │ │ │ │ └── Widget │ │ │ │ │ │ └── BlockTest.php │ │ │ │ ├── Command │ │ │ │ │ └── WysiwygRestrictCommandTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ ├── CreateTest.php │ │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ │ │ ├── FulltextGridSearchTest.php │ │ │ │ │ │ ├── PageDesignTest.php │ │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ │ └── Images │ │ │ │ │ │ │ ├── DeleteFilesTest.php │ │ │ │ │ │ │ ├── DeleteFolderTest.php │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ ├── NewFolderTest.php │ │ │ │ │ │ │ └── UploadTest.php │ │ │ │ │ ├── Noroute │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── PageTest.php │ │ │ │ │ └── RouterTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── page_list.php │ │ │ │ │ └── page_list_rollback.php │ │ │ │ ├── Helper │ │ │ │ │ ├── PageTest.php │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ └── ImagesTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ ├── Page │ │ │ │ │ │ ├── CustomLayoutManagerTest.php │ │ │ │ │ │ ├── CustomLayoutRepositoryTest.php │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ │ ├── PageRepositoryTest.php │ │ │ │ │ ├── PageTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Page │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── Images │ │ │ │ │ │ ├── GetInsertImageContentTest.php │ │ │ │ │ │ ├── GetThumbnailUrlsTest.php │ │ │ │ │ │ └── StorageTest.php │ │ │ │ ├── Setup │ │ │ │ │ └── ContentConverterTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── Component │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ └── _files │ │ │ │ │ ├── block.php │ │ │ │ │ ├── block_default_store.php │ │ │ │ │ ├── block_default_store_rollback.php │ │ │ │ │ ├── block_rollback.php │ │ │ │ │ ├── blocks.php │ │ │ │ │ ├── blocks_for_different_stores.php │ │ │ │ │ ├── blocks_for_different_stores_rollback.php │ │ │ │ │ ├── blocks_rollback.php │ │ │ │ │ ├── home_with_custom_handle.php │ │ │ │ │ ├── home_with_custom_handle_rollback.php │ │ │ │ │ ├── linked_media.php │ │ │ │ │ ├── linked_media_rollback.php │ │ │ │ │ ├── noroute.php │ │ │ │ │ ├── pages.php │ │ │ │ │ ├── pages_rollback.php │ │ │ │ │ ├── pages_with_layout_xml.php │ │ │ │ │ ├── pages_with_layout_xml_rollback.php │ │ │ │ │ ├── test.swf │ │ │ │ │ ├── text.txt │ │ │ │ │ ├── two_cms_page_with_same_url_for_different_stores.php │ │ │ │ │ └── two_cms_page_with_same_url_for_different_stores_rollback.php │ │ │ │ ├── CmsUrlRewrite │ │ │ │ └── Plugin │ │ │ │ │ └── Cms │ │ │ │ │ └── Model │ │ │ │ │ └── Store │ │ │ │ │ └── ViewTest.php │ │ │ │ ├── Config │ │ │ │ ├── App │ │ │ │ │ └── Config │ │ │ │ │ │ └── Type │ │ │ │ │ │ └── SystemTest.php │ │ │ │ ├── Block │ │ │ │ │ └── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ ├── FieldArray.php │ │ │ │ │ │ ├── FormStub.php │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── test_config.xml │ │ │ │ │ │ └── test_system.xml │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ ├── ConfigSetCommandTest.php │ │ │ │ │ │ └── ConfigShowCommandTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ ├── Config │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ │ └── RobotsTest.php │ │ │ │ │ │ │ ├── BaseurlTest.php │ │ │ │ │ │ │ ├── EncryptedTest.php │ │ │ │ │ │ │ └── Image │ │ │ │ │ │ │ │ └── AdapterTest.php │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ └── CommentTest.php │ │ │ │ │ │ ├── Processor │ │ │ │ │ │ │ └── EnvironmentPlaceholderTest.php │ │ │ │ │ │ └── Structure │ │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ ├── ConverterStub.php │ │ │ │ │ │ │ ├── ReaderStub.php │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config_groups.php │ │ │ │ │ │ ├── config_section.php │ │ │ │ │ │ ├── no_robots_txt.php │ │ │ │ │ │ ├── robots.txt │ │ │ │ │ │ └── robots_txt.php │ │ │ │ └── _files │ │ │ │ │ ├── config.php │ │ │ │ │ ├── config_data.php │ │ │ │ │ ├── env.php │ │ │ │ │ └── system.xml │ │ │ │ ├── ConfigurableImportExport │ │ │ │ └── Model │ │ │ │ │ ├── ConfigurableTest.php │ │ │ │ │ ├── Export │ │ │ │ │ └── RowCustomizerTest.php │ │ │ │ │ └── Import │ │ │ │ │ ├── Product │ │ │ │ │ └── Type │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── import_configurable.csv │ │ │ │ │ ├── import_configurable_12345.csv │ │ │ │ │ ├── import_configurable_child_products_stock_item_status_in_stock.csv │ │ │ │ │ ├── import_configurable_child_products_stock_item_status_out_of_stock.csv │ │ │ │ │ ├── import_configurable_for_multiple_store_views.csv │ │ │ │ │ └── import_configurable_for_multiple_store_views_error.csv │ │ │ │ ├── ConfigurableProduct │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Composite │ │ │ │ │ │ │ └── Fieldset │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── Variations │ │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── MatrixTest.php │ │ │ │ │ │ │ └── Steps │ │ │ │ │ │ │ └── AttributeValuesTest.php │ │ │ │ │ ├── Cart │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ └── Product │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ ├── RelatedTest.php │ │ │ │ │ │ └── UpsellTest.php │ │ │ │ │ │ └── View │ │ │ │ │ │ ├── CustomOptions │ │ │ │ │ │ └── RenderOptionsTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ ├── ConfigurableProductPriceTest.php │ │ │ │ │ │ ├── ConfigurableTest.php │ │ │ │ │ │ ├── ConfigurableViewOnCategoryPageTest.php │ │ │ │ │ │ ├── ConfigurableViewOnProductPageTest.php │ │ │ │ │ │ ├── MultiStoreConfigurableViewOnProductPageTest.php │ │ │ │ │ │ └── RenderConfigurableOptionsTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ └── CreateOptionsTest.php │ │ │ │ │ │ │ ├── Initialization │ │ │ │ │ │ │ │ └── HelperTest.php │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ │ │ └── UpdateCustomOptionsTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ └── CartTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Category │ │ │ │ │ │ └── ProductIndexerTest.php │ │ │ │ │ ├── FindByUrlRewriteTest.php │ │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ │ ├── Type │ │ │ │ │ │ │ ├── Configurable │ │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ └── SalableTest.php │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ └── VariationHandlerTest.php │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ ├── QuickSearchTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ └── RelationTest.php │ │ │ │ │ └── Sales │ │ │ │ │ │ └── AdminOrder │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ ├── Pricing │ │ │ │ │ ├── Price │ │ │ │ │ │ ├── LowestPriceOptionProviderTest.php │ │ │ │ │ │ ├── SpecialPriceIndexerTest.php │ │ │ │ │ │ ├── SpecialPriceIndexerWithDimensionTest.php │ │ │ │ │ │ └── SpecialPriceTest.php │ │ │ │ │ └── Render │ │ │ │ │ │ └── FinalPriceBox │ │ │ │ │ │ ├── RenderingBasedOnIsProductListFlagTest.php │ │ │ │ │ │ └── RenderingBasedOnIsProductListFlagWithDimensionTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── AssociatedProductsTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── associated_products.php │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ ├── configurable_attribute_2.php │ │ │ │ │ ├── configurable_attribute_2_rollback.php │ │ │ │ │ ├── configurable_attribute_different_labels_per_stores.php │ │ │ │ │ ├── configurable_attribute_different_labels_per_stores_rollback.php │ │ │ │ │ ├── configurable_attribute_first.php │ │ │ │ │ ├── configurable_attribute_first_rollback.php │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ ├── configurable_attribute_second.php │ │ │ │ │ ├── configurable_attribute_second_rollback.php │ │ │ │ │ ├── configurable_attribute_with_source_model.php │ │ │ │ │ ├── configurable_attribute_with_source_model_rollback.php │ │ │ │ │ ├── configurable_attributes_for_position_test.php │ │ │ │ │ ├── configurable_attributes_for_position_test_rollback.php │ │ │ │ │ ├── configurable_product_different_option_labeles_per_stores.php │ │ │ │ │ ├── configurable_product_different_option_labeles_per_stores_rollback.php │ │ │ │ │ ├── configurable_product_only_parent_two_websites.php │ │ │ │ │ ├── configurable_product_two_websites.php │ │ │ │ │ ├── configurable_product_two_websites_rollback.php │ │ │ │ │ ├── configurable_product_with_category.php │ │ │ │ │ ├── configurable_product_with_category_rollback.php │ │ │ │ │ ├── configurable_product_with_child_products_with_images.php │ │ │ │ │ ├── configurable_product_with_child_products_with_images_rollback.php │ │ │ │ │ ├── configurable_product_with_children_on_different_websites.php │ │ │ │ │ ├── configurable_product_with_children_on_different_websites_rollback.php │ │ │ │ │ ├── configurable_product_with_custom_option_and_simple_tier_price.php │ │ │ │ │ ├── configurable_product_with_custom_option_and_simple_tier_price_rollback.php │ │ │ │ │ ├── configurable_product_with_one_simple.php │ │ │ │ │ ├── configurable_product_with_one_simple_rollback.php │ │ │ │ │ ├── configurable_product_with_out_of_stock_children.php │ │ │ │ │ ├── configurable_product_with_out_of_stock_children_rollback.php │ │ │ │ │ ├── configurable_product_with_price_on_second_website.php │ │ │ │ │ ├── configurable_product_with_price_on_second_website_rollback.php │ │ │ │ │ ├── configurable_product_with_two_child_products.php │ │ │ │ │ ├── configurable_product_with_two_child_products_rollback.php │ │ │ │ │ ├── configurable_products.php │ │ │ │ │ ├── configurable_products_rollback.php │ │ │ │ │ ├── configurable_products_with_different_super_attribute.php │ │ │ │ │ ├── configurable_products_with_different_super_attribute_rollback.php │ │ │ │ │ ├── configurable_products_with_two_attributes.php │ │ │ │ │ ├── configurable_products_with_two_attributes_combination.php │ │ │ │ │ ├── configurable_products_with_two_attributes_combination_rollback.php │ │ │ │ │ ├── configurable_products_with_two_attributes_rollback.php │ │ │ │ │ ├── customer_quote_with_items_configurable_product.php │ │ │ │ │ ├── customer_quote_with_items_configurable_product_rollback.php │ │ │ │ │ ├── delete_association.php │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ ├── order_item_with_configurable_and_options.php │ │ │ │ │ ├── order_item_with_configurable_and_options_rollback.php │ │ │ │ │ ├── product_configurable.php │ │ │ │ │ ├── product_configurable_12345.php │ │ │ │ │ ├── product_configurable_12345_rollback.php │ │ │ │ │ ├── product_configurable_custom.php │ │ │ │ │ ├── product_configurable_custom_rollback.php │ │ │ │ │ ├── product_configurable_disable_first_child.php │ │ │ │ │ ├── product_configurable_disable_first_child_rollback.php │ │ │ │ │ ├── product_configurable_in_multiple_websites.php │ │ │ │ │ ├── product_configurable_in_multiple_websites_disable_first_child.php │ │ │ │ │ ├── product_configurable_in_multiple_websites_disable_first_child_rollback.php │ │ │ │ │ ├── product_configurable_in_multiple_websites_rollback.php │ │ │ │ │ ├── product_configurable_in_multiple_websites_with_special_price.php │ │ │ │ │ ├── product_configurable_rollback.php │ │ │ │ │ ├── product_configurable_sku.php │ │ │ │ │ ├── product_configurable_sku_rollback.php │ │ │ │ │ ├── product_configurable_with_assigned_simples.php │ │ │ │ │ ├── product_configurable_with_assigned_simples_rollback.php │ │ │ │ │ ├── product_configurable_with_category_and_weight.php │ │ │ │ │ ├── product_configurable_with_category_and_weight_rollback.php │ │ │ │ │ ├── product_configurable_with_custom_option_dropdown.php │ │ │ │ │ ├── product_configurable_with_custom_option_dropdown_rollback.php │ │ │ │ │ ├── product_configurable_with_custom_option_type_text.php │ │ │ │ │ ├── product_configurable_with_custom_option_type_text_rollback.php │ │ │ │ │ ├── product_configurable_with_frontend_label_attribute.php │ │ │ │ │ ├── product_configurable_with_frontend_label_attribute_rollback.php │ │ │ │ │ ├── product_configurable_with_media_gallery_video.php │ │ │ │ │ ├── product_configurable_with_media_gallery_video_rollback.php │ │ │ │ │ ├── product_configurable_with_metadescription.php │ │ │ │ │ ├── product_configurable_with_metadescription_rollback.php │ │ │ │ │ ├── product_configurable_zero_qty_first_child.php │ │ │ │ │ ├── product_configurable_zero_qty_first_child_rollback.php │ │ │ │ │ ├── product_simple_77.php │ │ │ │ │ ├── product_simple_77_rollback.php │ │ │ │ │ ├── quote_with_configurable_product.php │ │ │ │ │ ├── quote_with_configurable_product_last_variation.php │ │ │ │ │ ├── quote_with_configurable_product_last_variation_rollback.php │ │ │ │ │ ├── quote_with_configurable_product_rollback.php │ │ │ │ │ ├── restricted_admin_with_catalog_permissions.php │ │ │ │ │ ├── restricted_admin_with_catalog_permissions_rollback.php │ │ │ │ │ ├── tax_rule.php │ │ │ │ │ └── tax_rule_rollback.php │ │ │ │ └── etc │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── Contact │ │ │ │ ├── Block │ │ │ │ │ └── ContactFormTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ └── Model │ │ │ │ │ └── ConfigTest.php │ │ │ │ ├── Cookie │ │ │ │ └── Model │ │ │ │ │ └── Config │ │ │ │ │ └── Backend │ │ │ │ │ ├── DomainTest.php │ │ │ │ │ ├── LifetimeTest.php │ │ │ │ │ └── PathTest.php │ │ │ │ ├── Cron │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── AlertTest.php │ │ │ │ │ │ │ └── SitemapTest.php │ │ │ │ │ └── ScheduleTest.php │ │ │ │ └── Observer │ │ │ │ │ └── ProcessCronQueueObserverTest.php │ │ │ │ ├── Csp │ │ │ │ ├── CachedBlockTest.php │ │ │ │ ├── CspAwareActionTest.php │ │ │ │ ├── CspTest.php │ │ │ │ ├── CspUtilTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── InlineUtilTest.php │ │ │ │ └── Model │ │ │ │ │ ├── Collector │ │ │ │ │ ├── ConfigCollectorTest.php │ │ │ │ │ ├── ControllerCollectorTest.php │ │ │ │ │ ├── CspWhitelistXmlCollectorTest.php │ │ │ │ │ └── DynamicCollectorMock.php │ │ │ │ │ ├── CompositePolicyCollectorTest.php │ │ │ │ │ ├── Mode │ │ │ │ │ └── ConfigManagerTest.php │ │ │ │ │ └── Policy │ │ │ │ │ └── Renderer │ │ │ │ │ └── SimplePolicyHeaderRendererTest.php │ │ │ │ ├── CurrencySymbol │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ ├── Currency │ │ │ │ │ │ ├── FetchRatesTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── SaveRatesTest.php │ │ │ │ │ │ └── Currencysymbol │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── SaveTest.php │ │ │ │ └── Model │ │ │ │ │ └── System │ │ │ │ │ └── CurrencysymbolTest.php │ │ │ │ ├── Customer │ │ │ │ ├── Api │ │ │ │ │ └── AddressRepositoryTest.php │ │ │ │ ├── Block │ │ │ │ │ ├── Account │ │ │ │ │ │ ├── AuthenticationPopupTest.php │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ ├── DashboardTest.php │ │ │ │ │ │ └── ResetPasswordTest.php │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── BookTest.php │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ └── DefaultRendererTest.php │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ ├── OrderButtonTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ ├── AbstractCartTest.php │ │ │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ │ ├── CartBundleTest.php │ │ │ │ │ │ │ │ ├── CartConfigurableTest.php │ │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ │ └── StoreSwitcherTest.php │ │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ │ ├── CartsTest.php │ │ │ │ │ │ │ │ ├── NewsletterTest.php │ │ │ │ │ │ │ │ ├── Orders │ │ │ │ │ │ │ │ └── RenderOrdersTabTest.php │ │ │ │ │ │ │ │ ├── OrdersTest.php │ │ │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ │ │ ├── AbstractItemTest.php │ │ │ │ │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ │ │ │ └── ItemConfigurableTest.php │ │ │ │ │ │ │ │ │ │ └── ItemTest.php │ │ │ │ │ │ │ │ ├── PersonalInfoTest.php │ │ │ │ │ │ │ │ ├── SalesTest.php │ │ │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ ├── AbstractMultiactionTest.php │ │ │ │ │ │ │ │ ├── Multiaction │ │ │ │ │ │ │ │ ├── MultiactionBundleTest.php │ │ │ │ │ │ │ │ └── MultiactionConfigurableTest.php │ │ │ │ │ │ │ │ └── MultiactionTest.php │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ ├── Form │ │ │ │ │ │ ├── LoginTest.php │ │ │ │ │ │ └── RegisterTest.php │ │ │ │ │ ├── NewsletterTest.php │ │ │ │ │ └── Widget │ │ │ │ │ │ ├── CompanyTest.php │ │ │ │ │ │ ├── DobTest.php │ │ │ │ │ │ ├── FaxTest.php │ │ │ │ │ │ ├── GenderTest.php │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ ├── TaxvatTest.php │ │ │ │ │ │ └── TelephoneTest.php │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── UpgradeHashAlgorithmCommandTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Account │ │ │ │ │ │ ├── CreatePostTest.php │ │ │ │ │ │ ├── EmailTemplateTest.php │ │ │ │ │ │ └── LoginPostTest.php │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ └── DeleteAddressTest.php │ │ │ │ │ │ └── FormPost │ │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Composite │ │ │ │ │ │ │ │ └── Cart │ │ │ │ │ │ │ │ ├── ConfigureTest.php │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ └── InvalidateTokenTest.php │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ ├── Index │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ ├── InlineEditTest.php │ │ │ │ │ │ │ ├── MassAssignGroupTest.php │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ ├── MassSubscribeTest.php │ │ │ │ │ │ │ ├── MassUnsubscribeTest.php │ │ │ │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ └── ValidateTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── Wishlist │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Composite │ │ │ │ │ │ │ └── Wishlist │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ ├── AjaxLoginTest.php │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ ├── CreatePasswordTest.php │ │ │ │ │ ├── ForgotPasswordPostTest.php │ │ │ │ │ ├── Section │ │ │ │ │ │ └── LoadTest.php │ │ │ │ │ └── SendTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── address_data.php │ │ │ │ │ ├── customer_2_addresses.php │ │ │ │ │ ├── customer_2_addresses_rollback.php │ │ │ │ │ ├── customer_sec_website.php │ │ │ │ │ ├── customer_sec_website_2_addresses.php │ │ │ │ │ ├── customer_sec_website_2_addresses_rollback.php │ │ │ │ │ └── customer_sec_website_rollback.php │ │ │ │ ├── Helper │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ └── ViewTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AccountManagement │ │ │ │ │ │ ├── AuthenticateTest.php │ │ │ │ │ │ ├── CreateAccountTest.php │ │ │ │ │ │ ├── CreateAccountWithAddressTest.php │ │ │ │ │ │ ├── ForgotPasswordTest.php │ │ │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ │ │ └── ValidateTest.php │ │ │ │ │ ├── AccountManagementTest.php │ │ │ │ │ ├── Address │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ ├── CustomerAddressDataProviderTest.php │ │ │ │ │ │ ├── DeleteAddressTest.php │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ ├── AddressMetadataTest.php │ │ │ │ │ ├── AddressRegistryTest.php │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ ├── Checkout │ │ │ │ │ │ └── ConfigProviderTest.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ShareTest.php │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ └── MultiselectTest.php │ │ │ │ │ │ │ └── GroupTest.php │ │ │ │ │ ├── CustomerAddressAttributeTest.php │ │ │ │ │ ├── CustomerMetadataTest.php │ │ │ │ │ ├── CustomerRegistryTest.php │ │ │ │ │ ├── CustomerSystemAttributeTest.php │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ ├── EmailNotificationTest.php │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ ├── ForgotPasswordToken │ │ │ │ │ │ ├── ConfirmCustomerByTokenTest.php │ │ │ │ │ │ └── GetCustomerByTokenTest.php │ │ │ │ │ ├── FormTest.php │ │ │ │ │ ├── Group │ │ │ │ │ │ └── ResolverTest.php │ │ │ │ │ ├── GroupExcludedWebsiteTest.php │ │ │ │ │ ├── GroupManagementTest.php │ │ │ │ │ ├── GroupRegistryTest.php │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ ├── Metadata │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ └── ImageTest.php │ │ │ │ │ │ ├── FormFactoryTest.php │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── DeleteCustomerGroupExcludedWebsiteTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── CustomerRepository │ │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ │ ├── DeleteAddressTest.php │ │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ │ ├── CustomerRepositoryTest.php │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ ├── CollectionReindexOnAccountLockTest.php │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ │ └── ServiceCollectionTest.php │ │ │ │ │ │ └── GroupRepositoryTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── VisitorTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── Component │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ └── Listing │ │ │ │ │ │ ├── Address │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ │ │ ├── AttributeRepositoryTest.php │ │ │ │ │ │ └── Column │ │ │ │ │ │ └── ConfirmationTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── attribute_city_store_label_address.php │ │ │ │ │ ├── attribute_postcode_store_label_address.php │ │ │ │ │ ├── attribute_postcode_store_label_address_rollback.php │ │ │ │ │ ├── attribute_telephone_not_required_address.php │ │ │ │ │ ├── attribute_user_defined_address.php │ │ │ │ │ ├── attribute_user_defined_address_custom_attribute.php │ │ │ │ │ ├── attribute_user_defined_address_custom_attribute_rollback.php │ │ │ │ │ ├── attribute_user_defined_address_rollback.php │ │ │ │ │ ├── attribute_user_defined_custom_attribute.php │ │ │ │ │ ├── attribute_user_defined_custom_attribute_rollback.php │ │ │ │ │ ├── attribute_user_defined_customer.php │ │ │ │ │ ├── attribute_user_defined_customer_rollback.php │ │ │ │ │ ├── attribute_user_fullname.php │ │ │ │ │ ├── customer.php │ │ │ │ │ ├── customer_address.php │ │ │ │ │ ├── customer_address_attribute_update.php │ │ │ │ │ ├── customer_address_attribute_update_rollback.php │ │ │ │ │ ├── customer_address_rollback.php │ │ │ │ │ ├── customer_address_street_attribute.php │ │ │ │ │ ├── customer_address_street_attribute_rollback.php │ │ │ │ │ ├── customer_address_with_custom_text_attribute.php │ │ │ │ │ ├── customer_address_with_custom_text_attribute_rollback.php │ │ │ │ │ ├── customer_confirmation_config_disable.php │ │ │ │ │ ├── customer_confirmation_config_disable_rollback.php │ │ │ │ │ ├── customer_confirmation_config_enable.php │ │ │ │ │ ├── customer_confirmation_config_enable_rollback.php │ │ │ │ │ ├── customer_confirmation_email_address_with_special_chars.php │ │ │ │ │ ├── customer_confirmation_email_address_with_special_chars_rollback.php │ │ │ │ │ ├── customer_confirmation_email_template.php │ │ │ │ │ ├── customer_confirmation_email_template_rollback.php │ │ │ │ │ ├── customer_confirmed_email_template.php │ │ │ │ │ ├── customer_confirmed_email_template_rollback.php │ │ │ │ │ ├── customer_for_second_store.php │ │ │ │ │ ├── customer_for_second_store_rollback.php │ │ │ │ │ ├── customer_for_second_website.php │ │ │ │ │ ├── customer_for_second_website_rollback.php │ │ │ │ │ ├── customer_for_second_website_with_address.php │ │ │ │ │ ├── customer_for_second_website_with_address_rollback.php │ │ │ │ │ ├── customer_from_repository.php │ │ │ │ │ ├── customer_grid_indexer_enabled_update_on_schedule.php │ │ │ │ │ ├── customer_grid_indexer_enabled_update_on_schedule_rollback.php │ │ │ │ │ ├── customer_group.php │ │ │ │ │ ├── customer_group_rollback.php │ │ │ │ │ ├── customer_no_address.php │ │ │ │ │ ├── customer_no_address_rollback.php │ │ │ │ │ ├── customer_no_password.php │ │ │ │ │ ├── customer_non_default_website_id.php │ │ │ │ │ ├── customer_non_default_website_id_rollback.php │ │ │ │ │ ├── customer_one_address.php │ │ │ │ │ ├── customer_one_address_rollback.php │ │ │ │ │ ├── customer_password_email_template.html │ │ │ │ │ ├── customer_primary_addresses.php │ │ │ │ │ ├── customer_rollback.php │ │ │ │ │ ├── customer_rp_token.php │ │ │ │ │ ├── customer_sample.php │ │ │ │ │ ├── customer_shipping_address_36104.php │ │ │ │ │ ├── customer_shipping_address_36104_rollback.php │ │ │ │ │ ├── customer_two_addresses.php │ │ │ │ │ ├── customer_two_addresses_rollback.php │ │ │ │ │ ├── customer_welcome_email_template.php │ │ │ │ │ ├── customer_welcome_email_template_rollback.php │ │ │ │ │ ├── customer_welcome_no_password_email_template.php │ │ │ │ │ ├── customer_welcome_no_password_email_template_rollback.php │ │ │ │ │ ├── customer_with_addresses.php │ │ │ │ │ ├── customer_with_addresses_rollback.php │ │ │ │ │ ├── customer_with_group_and_address.php │ │ │ │ │ ├── customer_with_group_and_address_rollback.php │ │ │ │ │ ├── customer_with_uk_address.php │ │ │ │ │ ├── customer_with_uk_address_rollback.php │ │ │ │ │ ├── customer_with_website.php │ │ │ │ │ ├── customer_with_website_rollback.php │ │ │ │ │ ├── customer_without_addresses.php │ │ │ │ │ ├── customer_without_addresses_rollback.php │ │ │ │ │ ├── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── expired_lock_for_customer.php │ │ │ │ │ ├── expired_lock_for_customer_rollback.php │ │ │ │ │ ├── five_repository_customers.php │ │ │ │ │ ├── five_repository_customers_rollback.php │ │ │ │ │ ├── image │ │ │ │ │ │ └── magento.jpg │ │ │ │ │ ├── import_export │ │ │ │ │ │ ├── customer.php │ │ │ │ │ │ ├── customer_with_addresses.php │ │ │ │ │ │ ├── customers.php │ │ │ │ │ │ ├── customers_for_address_import.php │ │ │ │ │ │ ├── customers_rollback.php │ │ │ │ │ │ ├── customers_with_websites.php │ │ │ │ │ │ └── customers_with_websites_rollback.php │ │ │ │ │ ├── inactive_customer.php │ │ │ │ │ ├── locked_customer.php │ │ │ │ │ ├── locked_customer_rollback.php │ │ │ │ │ ├── new_customer.php │ │ │ │ │ ├── new_customer_rollback.php │ │ │ │ │ ├── quote.php │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ ├── second_customer_with_group_and_address.php │ │ │ │ │ ├── second_customer_with_group_and_address_rollback.php │ │ │ │ │ ├── three_customers.php │ │ │ │ │ ├── three_customers_rollback.php │ │ │ │ │ ├── twenty_one_customers.php │ │ │ │ │ ├── two_customers.php │ │ │ │ │ ├── two_customers_rollback.php │ │ │ │ │ ├── two_customers_with_different_customer_groups.php │ │ │ │ │ ├── two_customers_with_different_customer_groups_rollback.php │ │ │ │ │ ├── unconfirmed_customer.php │ │ │ │ │ └── unconfirmed_customer_rollback.php │ │ │ │ └── etc │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── CustomerGraphQl │ │ │ │ ├── Model │ │ │ │ │ └── Resolver │ │ │ │ │ │ └── CreateCustomerTest.php │ │ │ │ └── _files │ │ │ │ │ ├── french │ │ │ │ │ └── fr_fr │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ └── registration.php │ │ │ │ │ ├── website_store_with_store_view.php │ │ │ │ │ └── website_store_with_store_view_rollback.php │ │ │ │ ├── CustomerImportExport │ │ │ │ ├── Model │ │ │ │ │ ├── Export │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ └── CustomerTest.php │ │ │ │ │ └── Import │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ ├── CustomerCompositeTest.php │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── 2k_customers.csv.gz │ │ │ │ │ │ ├── address_import_delete.csv │ │ │ │ │ │ ├── address_import_update.csv │ │ │ │ │ │ ├── customer_composite_delete.csv │ │ │ │ │ │ ├── customer_composite_update.csv │ │ │ │ │ │ ├── customer_to_import_with_one_additional_column.csv │ │ │ │ │ │ ├── customers_to_delete.csv │ │ │ │ │ │ ├── customers_to_import.csv │ │ │ │ │ │ ├── customers_to_update.csv │ │ │ │ │ │ ├── customers_with_gender_to_import.csv │ │ │ │ │ │ ├── import_uk_address.csv │ │ │ │ │ │ └── two_addresses_import_update.csv │ │ │ │ └── _files │ │ │ │ │ ├── two_addresses.php │ │ │ │ │ └── two_addresses_rollback.php │ │ │ │ ├── Deploy │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── App │ │ │ │ │ │ ├── ApplicationDumpCommandTest.php │ │ │ │ │ │ ├── ConfigImportCommand │ │ │ │ │ │ ├── IntegrationTestImporter.php │ │ │ │ │ │ └── IntegrationTestSecondImporter.php │ │ │ │ │ │ ├── ConfigImportCommandTest.php │ │ │ │ │ │ └── SensitiveConfigSetCommandTest.php │ │ │ │ ├── DeployTest.php │ │ │ │ └── _files │ │ │ │ │ ├── Vendor │ │ │ │ │ ├── child │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── _extend-child.less │ │ │ │ │ └── parent │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ ├── _extend-child.less │ │ │ │ │ │ └── _extend.less │ │ │ │ │ ├── _config.local.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── config_data.php │ │ │ │ │ ├── lib │ │ │ │ │ └── web │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── map.php │ │ │ │ │ ├── requirejs-map.js │ │ │ │ │ ├── scopes │ │ │ │ │ ├── config_with_changed_stores.php │ │ │ │ │ ├── config_with_removed_stores.php │ │ │ │ │ └── config_with_stores.php │ │ │ │ │ ├── theme.php │ │ │ │ │ ├── theme_rollback.php │ │ │ │ │ ├── zoom1 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── view.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ ├── theme.xml │ │ │ │ │ └── web │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── root.less │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── logo-magento-1.png │ │ │ │ │ │ ├── logo-magento-2.png │ │ │ │ │ │ └── logo-magento-3.png │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── file1.js │ │ │ │ │ │ ├── file2.js │ │ │ │ │ │ ├── file3.js │ │ │ │ │ │ └── file4.js │ │ │ │ │ ├── zoom2 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── view.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ ├── theme.xml │ │ │ │ │ └── web │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── _testA.less │ │ │ │ │ │ ├── _testB.less │ │ │ │ │ │ └── root.less │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── logo-magento-2.png │ │ │ │ │ │ └── js │ │ │ │ │ │ └── file2.js │ │ │ │ │ └── zoom3 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ └── view.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ ├── theme.xml │ │ │ │ │ └── web │ │ │ │ │ ├── css │ │ │ │ │ ├── _testA.less │ │ │ │ │ └── local.css │ │ │ │ │ ├── images │ │ │ │ │ └── logo-magento-3.png │ │ │ │ │ └── js │ │ │ │ │ └── file3.js │ │ │ │ ├── Developer │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── SourceThemeDeployCommandTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ └── Model │ │ │ │ │ ├── Config │ │ │ │ │ └── Backend │ │ │ │ │ │ └── AllowedIpsTest.php │ │ │ │ │ └── Logger │ │ │ │ │ └── Handler │ │ │ │ │ └── DebugTest.php │ │ │ │ ├── Dhl │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── UnitofmeasureTest.php │ │ │ │ ├── Model │ │ │ │ │ └── CarrierTest.php │ │ │ │ └── _files │ │ │ │ │ ├── SingleknownTrackResponse-no-data-found.xml │ │ │ │ │ ├── Track-res-XML-Parse-Err.xml │ │ │ │ │ ├── TrackingRequest_MultipleAWB.xml │ │ │ │ │ ├── TrackingRequest_SingleAWB.xml │ │ │ │ │ ├── TrackingResponse_MultipleAWB.xml │ │ │ │ │ ├── TrackingResponse_SingleAWB.xml │ │ │ │ │ ├── dhl_quote_response.xml │ │ │ │ │ ├── domestic_shipment_request.xml │ │ │ │ │ ├── response_shipping_label.xml │ │ │ │ │ └── shipment_request.xml │ │ │ │ ├── Directory │ │ │ │ ├── Block │ │ │ │ │ ├── CurrencyTest.php │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Json │ │ │ │ │ │ └── CountryRegionTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Country │ │ │ │ │ │ └── Postcode │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ ├── CurrencyConfigTest.php │ │ │ │ │ └── RegionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── example_region_in_country.php │ │ │ │ │ ├── example_region_in_country_rollback.php │ │ │ │ │ ├── region_name_jp.php │ │ │ │ │ ├── region_name_jp_rollback.php │ │ │ │ │ ├── usd_cny_rate.php │ │ │ │ │ ├── usd_cny_rate_rollback.php │ │ │ │ │ ├── usd_uah_rate.php │ │ │ │ │ └── usd_uah_rate_rollback.php │ │ │ │ ├── Downloadable │ │ │ │ ├── Block │ │ │ │ │ ├── Account │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── Downloadable │ │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ │ └── SamplesTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── Products │ │ │ │ │ │ │ └── ListProductsTest.php │ │ │ │ │ └── Sales │ │ │ │ │ │ └── Order │ │ │ │ │ │ └── Email │ │ │ │ │ │ └── Items │ │ │ │ │ │ └── Order │ │ │ │ │ │ └── DownloadableTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Downloadable │ │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── sample.txt │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── File │ │ │ │ │ │ └── ContentUploaderTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── SetLinkStatusObserverTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── TypeTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ ├── SampleRepositoryTest.php │ │ │ │ │ └── Url │ │ │ │ │ │ └── DomainValidatorTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── customer_order_with_downloadable_product.php │ │ │ │ │ ├── customer_order_with_downloadable_product_rollback.php │ │ │ │ │ ├── customer_order_with_invoice_downloadable_product.php │ │ │ │ │ ├── customer_order_with_invoice_downloadable_product_rollback.php │ │ │ │ │ ├── downloadable_product_with_files_and_sample_url.php │ │ │ │ │ ├── downloadable_product_with_files_and_sample_url_rollback.php │ │ │ │ │ ├── order_item_with_downloadable_and_options.php │ │ │ │ │ ├── order_item_with_downloadable_and_options_rollback.php │ │ │ │ │ ├── order_with_customer_and_downloadable_product.php │ │ │ │ │ ├── order_with_customer_and_downloadable_product_rollback.php │ │ │ │ │ ├── order_with_customer_and_downloadable_product_with_multiple_links.php │ │ │ │ │ ├── order_with_customer_and_downloadable_product_with_multiple_links_rollback.php │ │ │ │ │ ├── order_with_downloadable_product.php │ │ │ │ │ ├── order_with_downloadable_product_rollback.php │ │ │ │ │ ├── order_with_downloadable_product_with_additional_options.php │ │ │ │ │ ├── order_with_downloadable_product_with_additional_options_rollback.php │ │ │ │ │ ├── product_configurable_downloadable.php │ │ │ │ │ ├── product_configurable_downloadable_rollback.php │ │ │ │ │ ├── product_downloadable.php │ │ │ │ │ ├── product_downloadable_rollback.php │ │ │ │ │ ├── product_downloadable_with_custom_options.php │ │ │ │ │ ├── product_downloadable_with_custom_options_rollback.php │ │ │ │ │ ├── product_downloadable_with_download_limit.php │ │ │ │ │ ├── product_downloadable_with_download_limit_rollback.php │ │ │ │ │ ├── product_downloadable_with_files.php │ │ │ │ │ ├── product_downloadable_with_files_rollback.php │ │ │ │ │ ├── product_downloadable_with_link_url_and_sample_url.php │ │ │ │ │ ├── product_downloadable_with_link_url_and_sample_url_rollback.php │ │ │ │ │ ├── product_downloadable_with_purchased_separately_links.php │ │ │ │ │ ├── product_downloadable_with_purchased_separately_links_rollback.php │ │ │ │ │ ├── product_downloadable_without_purchased_separately_links.php │ │ │ │ │ ├── product_downloadable_without_purchased_separately_links_rollback.php │ │ │ │ │ ├── quote_with_configurable_downloadable_product.php │ │ │ │ │ ├── quote_with_configurable_downloadable_product_rollback.php │ │ │ │ │ ├── quote_with_downloadable_product.php │ │ │ │ │ ├── quote_with_downloadable_product_rollback.php │ │ │ │ │ └── test_image.jpg │ │ │ │ └── etc │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── DownloadableImportExport │ │ │ │ └── Model │ │ │ │ │ ├── DownloadableTest.php │ │ │ │ │ └── Import │ │ │ │ │ ├── Product │ │ │ │ │ └── Type │ │ │ │ │ │ └── DownloadableTest.php │ │ │ │ │ └── _files │ │ │ │ │ └── import_downloadable.csv │ │ │ │ ├── Eav │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Main │ │ │ │ │ │ └── AbstractMainTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ ├── Save │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ ├── DateTimeTest.php │ │ │ │ │ │ │ ├── DropDownTest.php │ │ │ │ │ │ │ ├── MultipleSelectTest.php │ │ │ │ │ │ │ ├── TextAreaTest.php │ │ │ │ │ │ │ ├── TextEditorTest.php │ │ │ │ │ │ │ ├── TextTest.php │ │ │ │ │ │ │ └── YesNoTest.php │ │ │ │ │ │ └── Update │ │ │ │ │ │ └── InputType │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ ├── DateTimeTest.php │ │ │ │ │ │ ├── DropDownTest.php │ │ │ │ │ │ ├── MultipleSelectTest.php │ │ │ │ │ │ ├── TextAreaTest.php │ │ │ │ │ │ ├── TextEditorTest.php │ │ │ │ │ │ ├── TextTest.php │ │ │ │ │ │ └── YesNoTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── GroupRepositoryTest.php │ │ │ │ │ ├── AttributeManagementTest.php │ │ │ │ │ ├── AttributeRepositoryTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── Entity │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ │ ├── DatetimeTest.php │ │ │ │ │ │ │ │ └── DefaultFrontendTest.php │ │ │ │ │ │ ├── AttributeLoaderTest.php │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── AttributeLoaderTest.php │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── UpdateHandler │ │ │ │ │ │ │ ├── ExecuteProcessForAllStoresTest.php │ │ │ │ │ │ │ ├── ExecuteProcessForCustomAttributeInCustomStoreTest.php │ │ │ │ │ │ │ └── ExecuteProcessForCustomStoreTest.php │ │ │ │ │ │ └── UpdateHandlerAbstract.php │ │ │ │ │ ├── TypeLocatorTest.php │ │ │ │ │ └── Validator │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ └── BackendTest.php │ │ │ │ ├── Setup │ │ │ │ │ ├── AddOptionToAttributeTest.php │ │ │ │ │ └── EavSetupTest.php │ │ │ │ └── _files │ │ │ │ │ ├── attribute_for_caching.php │ │ │ │ │ ├── attribute_for_caching_rollback.php │ │ │ │ │ ├── attribute_for_search.php │ │ │ │ │ ├── attribute_group_for_search.php │ │ │ │ │ ├── attribute_set_for_search.php │ │ │ │ │ ├── attribute_set_for_search_rollback.php │ │ │ │ │ ├── attribute_with_options.php │ │ │ │ │ ├── attribute_with_options_rollback.php │ │ │ │ │ ├── empty_attribute_set.php │ │ │ │ │ ├── empty_attribute_set_rollback.php │ │ │ │ │ ├── product_texteditor_attribute.php │ │ │ │ │ └── product_texteditor_attribute_rollback.php │ │ │ │ ├── Elasticsearch │ │ │ │ ├── Catalog │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ └── Category │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Action │ │ │ │ │ │ └── RowsTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ └── QuickSearchTest.php │ │ │ │ ├── Elasticsearch5 │ │ │ │ │ └── SearchAdapter │ │ │ │ │ │ └── AdapterTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Adapter │ │ │ │ │ │ └── ElasticsearchTest.php │ │ │ │ │ ├── CatalogSearch │ │ │ │ │ │ └── AdvancedTest.php │ │ │ │ │ ├── Client │ │ │ │ │ │ └── ElasticsearchTest.php │ │ │ │ │ └── Indexer │ │ │ │ │ │ ├── Fulltext │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ ├── IndexHandlerTest.php │ │ │ │ │ │ └── ReindexAllTest.php │ │ │ │ ├── SearchAdapter │ │ │ │ │ └── AdapterTest.php │ │ │ │ └── _files │ │ │ │ │ ├── case_sensitive.php │ │ │ │ │ ├── case_sensitive_rollback.php │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ ├── configurable_products.php │ │ │ │ │ ├── configurable_products_rollback.php │ │ │ │ │ ├── indexer.php │ │ │ │ │ ├── indexer_rollback.php │ │ │ │ │ ├── multiselect_attribute.php │ │ │ │ │ ├── multiselect_attribute_rollback.php │ │ │ │ │ ├── products_for_search.php │ │ │ │ │ ├── products_for_search_rollback.php │ │ │ │ │ ├── requests.xml │ │ │ │ │ ├── select_attribute.php │ │ │ │ │ ├── select_attribute_rollback.php │ │ │ │ │ ├── select_attribute_store_labels.php │ │ │ │ │ └── select_attribute_store_labels_rollback.php │ │ │ │ ├── Elasticsearch7 │ │ │ │ └── SearchAdapter │ │ │ │ │ └── ConnectionManagerTest.php │ │ │ │ ├── Email │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Template │ │ │ │ │ │ └── Edit │ │ │ │ │ │ └── FormTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Email │ │ │ │ │ │ └── TemplateTest.php │ │ │ │ └── Model │ │ │ │ │ ├── Template │ │ │ │ │ ├── FilterTest.php │ │ │ │ │ └── VariableCompatibilityCheckerTest.php │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── code │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Email │ │ │ │ │ │ └── view │ │ │ │ │ │ └── email │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ └── header.html │ │ │ │ │ ├── design │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── Magento_Email │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ │ └── email_template_test_handle.xml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── sample_email_content.phtml │ │ │ │ │ │ │ │ ├── Magento_ProductAlert │ │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ │ └── cron_error.html │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ └── account_new_confirmed.html │ │ │ │ │ │ │ ├── Magento_Email │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ └── email_template_test_handle.xml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── sample_email_content.phtml │ │ │ │ │ │ │ │ └── sample_email_content_custom.phtml │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ ├── email-3.less │ │ │ │ │ │ │ ├── email-inline-3.less │ │ │ │ │ │ │ └── file-with-error.less │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ └── account_new.html │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ ├── email-1.less │ │ │ │ │ │ │ └── email-inline-1.less │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ └── email │ │ │ │ │ │ │ └── account_new_confirmation.html │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ ├── email-2.less │ │ │ │ │ │ └── email-inline-2.less │ │ │ │ │ ├── email_template.php │ │ │ │ │ ├── email_template_new_user_notification.php │ │ │ │ │ ├── email_template_reset_password_user_notification.php │ │ │ │ │ ├── template_fixture.html │ │ │ │ │ └── variables_template.html │ │ │ │ ├── EncryptionKey │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Crypt │ │ │ │ │ │ └── Key │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ └── FormTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Crypt │ │ │ │ │ │ └── Key │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── SaveTest.php │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Key │ │ │ │ │ │ └── ChangeTest.php │ │ │ │ ├── Setup │ │ │ │ │ └── Patch │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── SodiumChachaPatchTest.php │ │ │ │ └── _files │ │ │ │ │ └── payment_info.php │ │ │ │ ├── Fedex │ │ │ │ └── Model │ │ │ │ │ ├── CarrierTest.php │ │ │ │ │ └── Source │ │ │ │ │ └── UnitofmeasureTest.php │ │ │ │ ├── Framework │ │ │ │ ├── Api │ │ │ │ │ ├── AbstractExtensibleObjectTest.php │ │ │ │ │ ├── ExtensionAttribute │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── config_one.xml │ │ │ │ │ │ │ │ └── config_two.xml │ │ │ │ │ │ ├── ExtensionAttributesGenerationTest.php │ │ │ │ │ │ └── JoinProcessorTest.php │ │ │ │ │ ├── ExtensionAttributesFactoryTest.php │ │ │ │ │ ├── SortOrderBuilderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── App │ │ │ │ │ ├── AreaTest.php │ │ │ │ │ ├── Cache │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ │ │ └── PoolTest.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── BaseTest.php │ │ │ │ │ │ ├── DataTest.php │ │ │ │ │ │ └── InitialTest.php │ │ │ │ │ ├── Filesystem │ │ │ │ │ │ ├── CreatePdfFileTest.php │ │ │ │ │ │ └── DirectoryResolverTest.php │ │ │ │ │ ├── FrontControllerEventsTest.php │ │ │ │ │ ├── FrontControllerTest.php │ │ │ │ │ ├── Language │ │ │ │ │ │ ├── DictionaryTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── en_az │ │ │ │ │ │ │ │ ├── a.csv │ │ │ │ │ │ │ │ ├── b.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── devdoc │ │ │ │ │ │ │ └── en_ak │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── first │ │ │ │ │ │ │ └── en_az │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ └── en_au │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── 2.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ └── ru_ru │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── parent-package-one │ │ │ │ │ │ │ ├── en_au_package │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── en_ie_package │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── language_package_one │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── parent-package-two │ │ │ │ │ │ │ ├── en_ca_package │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── en_us_package │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── language_package_two │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── second │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── theirs │ │ │ │ │ │ │ └── ru_ru │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ ├── ConfigLoaderTest.php │ │ │ │ │ │ └── ConfigWriter │ │ │ │ │ │ │ └── FilesystemTest.php │ │ │ │ │ ├── Request │ │ │ │ │ │ ├── CsrfValidatorTest.php │ │ │ │ │ │ └── HttpMethodValidatorTest.php │ │ │ │ │ ├── ResourceConnection │ │ │ │ │ │ └── ConnectionFactoryTest.php │ │ │ │ │ ├── Response │ │ │ │ │ │ └── HeaderProvider │ │ │ │ │ │ │ ├── AbstractHeaderTestCase.php │ │ │ │ │ │ │ ├── HstsTest.php │ │ │ │ │ │ │ ├── UpgradeInsecureTest.php │ │ │ │ │ │ │ └── XFrameOptionsTest.php │ │ │ │ │ ├── Route │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── Router │ │ │ │ │ │ └── BaseTest.php │ │ │ │ │ ├── TestStubs │ │ │ │ │ │ ├── InheritanceBasedBackendAction.php │ │ │ │ │ │ ├── InheritanceBasedFrontendAction.php │ │ │ │ │ │ ├── InterfaceOnlyBackendAction.php │ │ │ │ │ │ └── InterfaceOnlyFrontendAction.php │ │ │ │ │ ├── Utility │ │ │ │ │ │ ├── FilesTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── Module_Third_Party │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ │ └── _module.less │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ ├── language │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ ├── one.csv │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── library │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── patterns │ │ │ │ │ │ │ ├── paths_one.txt │ │ │ │ │ │ │ └── paths_two.txt │ │ │ │ │ └── View │ │ │ │ │ │ └── Deployment │ │ │ │ │ │ └── VersionTest.php │ │ │ │ ├── Archive │ │ │ │ │ ├── ZipTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ └── test.zip │ │ │ │ ├── Async │ │ │ │ │ ├── ProxyDeferredFactoryTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── test_class.php │ │ │ │ ├── Backup │ │ │ │ │ ├── DbTest.php │ │ │ │ │ ├── FilesystemTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── trigger.php │ │ │ │ │ │ ├── trigger_rollback.php │ │ │ │ │ │ └── var │ │ │ │ │ │ └── backups │ │ │ │ │ │ └── 1474538269_filesystem_code.tgz │ │ │ │ ├── Cache │ │ │ │ │ ├── Backend │ │ │ │ │ │ └── MongoDbTest.php │ │ │ │ │ └── CoreTest.php │ │ │ │ ├── Code │ │ │ │ │ ├── File │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ └── NotProtectedExtensionTest.php │ │ │ │ │ ├── Generator │ │ │ │ │ │ └── AutoloaderTest.php │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ ├── GeneratorTest │ │ │ │ │ │ ├── NestedNamespace │ │ │ │ │ │ │ ├── SourceClassWithNestedNamespace.php │ │ │ │ │ │ │ └── SourceClassWithNestedNamespaceExtension.php │ │ │ │ │ │ ├── ParentClassWithNamespace.php │ │ │ │ │ │ ├── SourceClassWithNamespace.php │ │ │ │ │ │ └── SourceClassWithNamespaceExtension.php │ │ │ │ │ ├── Reader │ │ │ │ │ │ ├── SourceArgumentsReaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── SourceArgumentsReaderTest.php.sample │ │ │ │ │ ├── _expected │ │ │ │ │ │ ├── SourceClassWithNamespaceExtensionInterfaceFactory.php.sample │ │ │ │ │ │ ├── SourceClassWithNamespaceFactory.php.sample │ │ │ │ │ │ ├── SourceClassWithNamespaceInterceptor.php.sample │ │ │ │ │ │ ├── SourceClassWithNamespaceProxy.php.sample │ │ │ │ │ │ ├── SourceClassWithNestedNamespaceExtensionInterfaceFactory.php.sample │ │ │ │ │ │ └── SourceClassWithNestedNamespaceFactory.php.sample │ │ │ │ │ └── _files │ │ │ │ │ │ └── ClassToFind.php │ │ │ │ ├── Communication │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── communication_incorrect_request_schema_type.php │ │ │ │ │ │ ├── communication_invalid_topic_name.php │ │ │ │ │ │ ├── communication_is_synchronous_is_not_boolean.php │ │ │ │ │ │ ├── communication_missing_handler.xml │ │ │ │ │ │ ├── communication_missing_request.xml │ │ │ │ │ │ ├── communication_multiple_handlers_synchronous_mode.php │ │ │ │ │ │ ├── communication_multiple_handlers_synchronous_mode.xml │ │ │ │ │ │ ├── communication_no_attributes.xml │ │ │ │ │ │ ├── communication_not_existing_handler_method.php │ │ │ │ │ │ ├── communication_not_existing_handler_method.xml │ │ │ │ │ │ ├── communication_not_existing_service.xml │ │ │ │ │ │ ├── communication_not_existing_service_method.xml │ │ │ │ │ │ ├── communication_request_not_existing_service.php │ │ │ │ │ │ ├── communication_request_not_existing_service.xml │ │ │ │ │ │ ├── communication_response_not_existing_service.php │ │ │ │ │ │ ├── communication_response_not_existing_service.xml │ │ │ │ │ │ ├── communication_topic_with_excessive_keys.php │ │ │ │ │ │ ├── communication_topic_with_missed_keys.php │ │ │ │ │ │ ├── communication_topic_without_data.php │ │ │ │ │ │ ├── communication_with_disabled_handler.php │ │ │ │ │ │ ├── communication_with_non_matched_name.php │ │ │ │ │ │ ├── invalid_communication_numeric.xml │ │ │ │ │ │ ├── valid_communication.xml │ │ │ │ │ │ ├── valid_communication_expected.php │ │ │ │ │ │ ├── valid_communication_extra.xml │ │ │ │ │ │ ├── valid_communication_input.php │ │ │ │ │ │ └── valid_communication_numeric.xml │ │ │ │ ├── Composer │ │ │ │ │ ├── ComposerInformationTest.php │ │ │ │ │ ├── RemoveTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── testFromClone │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── README │ │ │ │ │ │ ├── testFromCreateProject │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── README │ │ │ │ │ │ ├── testSkeleton │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── README │ │ │ │ │ │ └── vendor_path.php │ │ │ │ ├── Config │ │ │ │ │ └── ConverterTest.php │ │ │ │ ├── Css │ │ │ │ │ ├── PreProcessor │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ └── CssInlinerTest.php │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ └── Collector │ │ │ │ │ │ │ │ └── AggregatedTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ ├── Other │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ │ └── Third │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Module │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Third │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Module │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Second │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── 1.file │ │ │ │ │ │ │ ├── 2.file │ │ │ │ │ │ │ ├── 3.less │ │ │ │ │ │ │ └── some_dir │ │ │ │ │ │ │ ├── import_dir │ │ │ │ │ │ │ └── import_in_magento_import.less │ │ │ │ │ │ │ └── magento_import.less │ │ │ │ │ └── _files │ │ │ │ │ │ └── css │ │ │ │ │ │ ├── test-css-no-spaces.css │ │ │ │ │ │ ├── test-css-with-spaces.css │ │ │ │ │ │ └── test-input.html │ │ │ │ ├── DB │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ └── Pdo │ │ │ │ │ │ │ └── MysqlTest.php │ │ │ │ │ ├── DataConverter │ │ │ │ │ │ └── DataConverterTest.php │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ ├── TransactionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── dummy_fixture.php │ │ │ │ ├── Data │ │ │ │ │ ├── Argument │ │ │ │ │ │ └── Interpreter │ │ │ │ │ │ │ ├── BaseStringUtilsTest.php │ │ │ │ │ │ │ └── StringUtilsTest.php │ │ │ │ │ ├── Form │ │ │ │ │ │ └── Element │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ ├── FieldsetTest.php │ │ │ │ │ │ │ └── ImageTest.php │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ └── NormalizerTest.php │ │ │ │ ├── DataObject │ │ │ │ │ ├── Copy │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── expectedArray.php │ │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ │ ├── partialFieldsetFirst.xml │ │ │ │ │ │ │ └── partialFieldsetSecond.xml │ │ │ │ │ ├── CopyTest.php │ │ │ │ │ └── IdentityValidatorTest.php │ │ │ │ ├── Encryption │ │ │ │ │ ├── EncryptorTest.php │ │ │ │ │ └── ModelTest.php │ │ │ │ ├── Error │ │ │ │ │ └── ProcessorTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── NoSuchEntityExceptionTest.php │ │ │ │ ├── File │ │ │ │ │ ├── MediaStorageUploaderTest.php │ │ │ │ │ ├── NameTest.php │ │ │ │ │ ├── SizeTest.php │ │ │ │ │ ├── UploaderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fixture_with_long_string.txt │ │ │ │ │ │ ├── framework_file_name.php │ │ │ │ │ │ ├── framework_file_name_rollback.php │ │ │ │ │ │ ├── magento.jpg │ │ │ │ │ │ └── magento_small_image.jpg │ │ │ │ ├── Filesystem │ │ │ │ │ ├── Directory │ │ │ │ │ │ ├── ReadTest.php │ │ │ │ │ │ └── WriteTest.php │ │ │ │ │ ├── Driver │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ ├── File │ │ │ │ │ │ ├── ReadTest.php │ │ │ │ │ │ └── WriteTest.php │ │ │ │ │ ├── FileResolverTest.php │ │ │ │ │ ├── FilesystemTest.php │ │ │ │ │ ├── Io │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── ClassToFind.php │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ │ └── file_one.txt │ │ │ │ │ │ │ └── file_two.txt │ │ │ │ │ │ └── file_three.txt │ │ │ │ │ │ └── popup.csv │ │ │ │ ├── Filter │ │ │ │ │ ├── DirectiveProcessor │ │ │ │ │ │ ├── DependDirectiveTest.php │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ └── FilterApplierTest.php │ │ │ │ │ │ ├── ForDirectiveTest.php │ │ │ │ │ │ ├── IfDirectiveTest.php │ │ │ │ │ │ ├── LegacyDirectiveTest.php │ │ │ │ │ │ ├── SimpleDirectiveTest.php │ │ │ │ │ │ ├── TemplateDirectiveTest.php │ │ │ │ │ │ └── VarDirectiveTest.php │ │ │ │ │ ├── Template │ │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ │ └── ParameterTest.php │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ ├── TruncateFilterTest.php │ │ │ │ │ └── VariableResolver │ │ │ │ │ │ └── StrictResolverTest.php │ │ │ │ ├── GraphQl │ │ │ │ │ ├── Config │ │ │ │ │ │ └── GraphQlReaderTest.php │ │ │ │ │ ├── GraphQlConfigTest.php │ │ │ │ │ ├── GraphQlSchemaStitching │ │ │ │ │ │ └── GraphQlReaderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── query_array_output.php │ │ │ │ │ │ ├── schemaA.graphqls │ │ │ │ │ │ ├── schemaB.graphqls │ │ │ │ │ │ ├── schemaC.graphqls │ │ │ │ │ │ ├── schemaD.graphqls │ │ │ │ │ │ ├── schema_response_sdl_description.php │ │ │ │ │ │ └── schema_with_description_sdl.php │ │ │ │ ├── HTTP │ │ │ │ │ ├── AsyncClientInterfaceTest.php │ │ │ │ │ ├── HeaderTest.php │ │ │ │ │ └── PhpEnvironment │ │ │ │ │ │ ├── RemoteAddressTest.php │ │ │ │ │ │ └── ServerAddressTest.php │ │ │ │ ├── Image │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── InterfaceTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── image_adapters_test.png │ │ │ │ │ │ ├── image_fixture.php │ │ │ │ │ │ ├── magento_thumbnail.jpg │ │ │ │ │ │ ├── notanimage.txt │ │ │ │ │ │ ├── watermark.gif │ │ │ │ │ │ ├── watermark.jpg │ │ │ │ │ │ ├── watermark.png │ │ │ │ │ │ ├── watermark_alpha.png │ │ │ │ │ │ └── watermark_alpha_base_image.jpg │ │ │ │ ├── Interception │ │ │ │ │ ├── AbstractPlugin.php │ │ │ │ │ ├── Config │ │ │ │ │ │ └── CacheManagerTest.php │ │ │ │ │ ├── Fixture │ │ │ │ │ │ ├── Intercepted.php │ │ │ │ │ │ ├── Intercepted │ │ │ │ │ │ │ ├── FirstPlugin.php │ │ │ │ │ │ │ ├── InterfacePlugin.php │ │ │ │ │ │ │ └── Plugin.php │ │ │ │ │ │ ├── InterceptedInterface.php │ │ │ │ │ │ ├── InterceptedParent.php │ │ │ │ │ │ └── InterceptedParentInterface.php │ │ │ │ │ ├── GeneralTest.php │ │ │ │ │ ├── PluginListGeneratorTest.php │ │ │ │ │ └── TwoPluginTest.php │ │ │ │ ├── Json │ │ │ │ │ └── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Jwt │ │ │ │ │ └── JwtManagerTest.php │ │ │ │ ├── Lock │ │ │ │ │ └── Backend │ │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ │ ├── DatabaseTest.php │ │ │ │ │ │ ├── FileLockTest.php │ │ │ │ │ │ └── ZookeeperTest.php │ │ │ │ ├── Mail │ │ │ │ │ ├── EmailMessageTest.php │ │ │ │ │ └── TransportBuilderTest.php │ │ │ │ ├── Message │ │ │ │ │ ├── CollectionFactoryTest.php │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ └── ManagerTest.php │ │ │ │ ├── MessageQueue │ │ │ │ │ ├── ConfigGetConsumersTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── Consumer │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ ├── MessageEncoderTest.php │ │ │ │ │ ├── Publisher │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ ├── Topology │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ ├── TopologyTest.php │ │ │ │ │ ├── UseCase │ │ │ │ │ │ ├── AsyncMultipleHandlersTest.php │ │ │ │ │ │ ├── AsyncMultipleTopicsWithEachQueueTest.php │ │ │ │ │ │ ├── DeprecatedFormat │ │ │ │ │ │ │ ├── AsyncMultiTopicsSeparateQueuesTest.php │ │ │ │ │ │ │ └── RpcCommunicationTest.php │ │ │ │ │ │ ├── MixSyncAndAsyncSingleQueueTest.php │ │ │ │ │ │ ├── MultipleTopicsPerQueueTest.php │ │ │ │ │ │ ├── QueueTestCaseAbstract.php │ │ │ │ │ │ ├── RemoteServiceCommunicationTest.php │ │ │ │ │ │ ├── RpcCommunicationTest.php │ │ │ │ │ │ ├── WaitAndNotWaitMessagesTest.php │ │ │ │ │ │ └── WildcardTopicTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ ├── encoder_communication.php │ │ │ │ │ │ ├── valid_expected_queue.php │ │ │ │ │ │ ├── valid_new_queue.xml │ │ │ │ │ │ └── valid_queue_input.php │ │ │ │ ├── Model │ │ │ │ │ ├── Entity │ │ │ │ │ │ └── HydratorTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Db │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ │ │ └── AbstractTest.php │ │ │ │ │ │ │ └── ProfilerTest.php │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── TableTest.php │ │ │ │ │ │ ├── IteratorTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── Db │ │ │ │ │ │ │ ├── ConnectionFactoryTest.php │ │ │ │ │ │ │ └── Pdo │ │ │ │ │ │ │ └── MysqlTest.php │ │ │ │ │ └── ResourceTest.php │ │ │ │ ├── Module │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── DbStatusValidatorTest.php │ │ │ │ ├── Mview │ │ │ │ │ └── View │ │ │ │ │ │ └── ChangelogTest.php │ │ │ │ ├── ObjectManager │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ └── DomTest.php │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── AbstractFactoryRuntimeDefinitionsTestCases.php │ │ │ │ │ │ ├── CompiledTest.php │ │ │ │ │ │ └── Dynamic │ │ │ │ │ │ │ └── DeveloperTest.php │ │ │ │ │ ├── ObjectManagerTest.php │ │ │ │ │ ├── TestAsset │ │ │ │ │ │ ├── Basic.php │ │ │ │ │ │ ├── BasicInjection.php │ │ │ │ │ │ ├── ComplexDependencies.php │ │ │ │ │ │ ├── ConstructorEightArguments.php │ │ │ │ │ │ ├── ConstructorFiveArguments.php │ │ │ │ │ │ ├── ConstructorFourArguments.php │ │ │ │ │ │ ├── ConstructorNineArguments.php │ │ │ │ │ │ ├── ConstructorNoArguments.php │ │ │ │ │ │ ├── ConstructorOneArgument.php │ │ │ │ │ │ ├── ConstructorSevenArguments.php │ │ │ │ │ │ ├── ConstructorSixArguments.php │ │ │ │ │ │ ├── ConstructorTenArguments.php │ │ │ │ │ │ ├── ConstructorThreeArguments.php │ │ │ │ │ │ ├── ConstructorTwoArguments.php │ │ │ │ │ │ ├── ConstructorWithTypeError.php │ │ │ │ │ │ ├── DependsOnAlias.php │ │ │ │ │ │ ├── DependsOnInterface.php │ │ │ │ │ │ ├── HasOptionalParameters.php │ │ │ │ │ │ ├── InterfaceImplementation.php │ │ │ │ │ │ ├── InterfaceInjection.php │ │ │ │ │ │ └── TestAssetInterface.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config_merged.xml │ │ │ │ │ │ ├── config_one.xml │ │ │ │ │ │ └── config_two.xml │ │ │ │ ├── Pricing │ │ │ │ │ └── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Profiler │ │ │ │ │ └── Driver │ │ │ │ │ │ └── Standard │ │ │ │ │ │ └── Output │ │ │ │ │ │ ├── CsvfileTest.php │ │ │ │ │ │ ├── HtmlTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── output.html │ │ │ │ │ │ ├── output_custom.csv │ │ │ │ │ │ ├── output_default.csv │ │ │ │ │ │ └── timers.php │ │ │ │ ├── ProfilerTest.php │ │ │ │ ├── Reflection │ │ │ │ │ └── MethodsMapTest.php │ │ │ │ ├── Search │ │ │ │ │ ├── Request │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ │ │ └── FileSystemReaderTest.php │ │ │ │ │ │ └── MapperTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ │ ├── date_attribute.php │ │ │ │ │ │ ├── date_attribute_rollback.php │ │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── search_request_1.xml │ │ │ │ │ │ └── search_request_2.xml │ │ │ │ │ │ ├── filterable_attribute.php │ │ │ │ │ │ ├── filterable_attribute_rollback.php │ │ │ │ │ │ ├── filterable_attributes.php │ │ │ │ │ │ ├── filterable_attributes_rollback.php │ │ │ │ │ │ ├── product_configurable.php │ │ │ │ │ │ ├── product_configurable_rollback.php │ │ │ │ │ │ ├── product_configurable_with_disabled_child.php │ │ │ │ │ │ ├── product_configurable_with_disabled_child_rollback.php │ │ │ │ │ │ ├── product_configurable_with_out-of-stock_child.php │ │ │ │ │ │ ├── product_configurable_with_out-of-stock_child_rollback.php │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ ├── products_multi_option.php │ │ │ │ │ │ ├── products_multi_option_rollback.php │ │ │ │ │ │ ├── products_rollback.php │ │ │ │ │ │ ├── products_with_the_same_search_score.php │ │ │ │ │ │ ├── products_with_the_same_search_score_rollback.php │ │ │ │ │ │ ├── requests.xml │ │ │ │ │ │ ├── search_request.xml │ │ │ │ │ │ ├── search_request_config.php │ │ │ │ │ │ ├── search_request_merged.php │ │ │ │ │ │ ├── search_weight_products.php │ │ │ │ │ │ └── search_weight_products_rollback.php │ │ │ │ ├── Session │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ ├── CookieDomainValidatorTest.php │ │ │ │ │ │ │ ├── CookieLifetimeValidatorTest.php │ │ │ │ │ │ │ └── CookiePathValidatorTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── SaveHandler │ │ │ │ │ │ └── DbTableTest.php │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ └── SessionManagerTest.php │ │ │ │ ├── Setup │ │ │ │ │ └── Declaration │ │ │ │ │ │ └── Schema │ │ │ │ │ │ └── Db │ │ │ │ │ │ └── MySQL │ │ │ │ │ │ └── DbSchemaWriterTest.php │ │ │ │ ├── Stdlib │ │ │ │ │ ├── Cookie │ │ │ │ │ │ ├── CookieScopeTest.php │ │ │ │ │ │ ├── PhpCookieManagerTest.php │ │ │ │ │ │ └── PhpCookieReaderTest.php │ │ │ │ │ └── DateTime │ │ │ │ │ │ └── Filter │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ └── DateTimeTest.php │ │ │ │ ├── Translate │ │ │ │ │ ├── InlineTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── _inline_page_expected.html │ │ │ │ │ │ ├── _inline_page_original.html │ │ │ │ │ │ └── _translation_data.php │ │ │ │ ├── TranslateCachingTest.php │ │ │ │ ├── TranslateTest.php │ │ │ │ ├── Url │ │ │ │ │ └── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ ├── UrlTest.php │ │ │ │ ├── Validator │ │ │ │ │ └── FactoryTest.php │ │ │ │ ├── ValidatorFactoryTest.php │ │ │ │ └── View │ │ │ │ │ ├── Asset │ │ │ │ │ └── MinifierTest.php │ │ │ │ │ ├── Design │ │ │ │ │ ├── Fallback │ │ │ │ │ │ └── RulePoolTest.php │ │ │ │ │ ├── FileResolution │ │ │ │ │ │ └── FallbackTest.php │ │ │ │ │ └── Theme │ │ │ │ │ │ ├── LabelTest.php │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractBlockTest.php │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ ├── Text │ │ │ │ │ │ └── ListTest.php │ │ │ │ │ ├── TextTest.php │ │ │ │ │ ├── UiComponent │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Provider │ │ │ │ │ │ │ │ └── TemplateTest.php │ │ │ │ │ │ ├── ContextTest.php │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── ReportingTest.php │ │ │ │ │ ├── UiComponentFactoryTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── plushe │ │ │ │ │ │ └── css │ │ │ │ │ │ └── wrong.css │ │ │ │ │ ├── FileSystemTest.php │ │ │ │ │ ├── Fixture │ │ │ │ │ └── Block │ │ │ │ │ │ ├── BrokenAction.php │ │ │ │ │ │ ├── BrokenConstructor.php │ │ │ │ │ │ └── BrokenLayout.php │ │ │ │ │ ├── Helper │ │ │ │ │ ├── SecureHtmlRendererTemplateTest.php │ │ │ │ │ └── SecureHtmlRendererTest.php │ │ │ │ │ ├── Layout │ │ │ │ │ ├── ElementTest.php │ │ │ │ │ ├── MergeTest.php │ │ │ │ │ ├── Reader │ │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── _layout_update_block.xml │ │ │ │ │ │ │ └── _layout_update_reference.xml │ │ │ │ │ ├── _files │ │ │ │ │ │ └── _layout_update.xml │ │ │ │ │ └── _mergeFiles │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── catalog_category_default.xml │ │ │ │ │ │ ├── catalog_category_layered.xml │ │ │ │ │ │ ├── catalog_product_view.xml │ │ │ │ │ │ ├── catalog_product_view_type_configurable.xml │ │ │ │ │ │ ├── catalog_product_view_type_simple.xml │ │ │ │ │ │ ├── checkout_index_index.xml │ │ │ │ │ │ ├── customer_account.xml │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ ├── file_wrong.xml │ │ │ │ │ │ ├── fixture_handle_one.xml │ │ │ │ │ │ ├── fixture_handle_page_layout.xml │ │ │ │ │ │ ├── fixture_handle_two.xml │ │ │ │ │ │ ├── fixture_handle_with_page_layout.xml │ │ │ │ │ │ ├── not_a_page_type.xml │ │ │ │ │ │ ├── page_empty.xml │ │ │ │ │ │ ├── print.xml │ │ │ │ │ │ ├── sales_guest_print.xml │ │ │ │ │ │ └── sales_order_print.xml │ │ │ │ │ │ └── merged.xml │ │ │ │ │ ├── LayoutArgumentObjectUpdater.php │ │ │ │ │ ├── LayoutArgumentSimpleUpdater.php │ │ │ │ │ ├── LayoutDirectivesTest.php │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ ├── LayoutTestWithExceptions.php │ │ │ │ │ ├── Model │ │ │ │ │ └── Layout │ │ │ │ │ │ ├── MergeTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── layout │ │ │ │ │ │ ├── fixture_handle_one.xml │ │ │ │ │ │ └── fixture_handle_two.xml │ │ │ │ │ ├── Page │ │ │ │ │ └── Config │ │ │ │ │ │ └── Reader │ │ │ │ │ │ ├── HtmlTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── _layout_update.xml │ │ │ │ │ ├── TemplateEngine │ │ │ │ │ └── PhpTest.php │ │ │ │ │ ├── Utility │ │ │ │ │ ├── Layout.php │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── handle_one.xml │ │ │ │ │ │ ├── handle_three.xml │ │ │ │ │ │ └── handle_two.xml │ │ │ │ │ │ └── layout_merged │ │ │ │ │ │ ├── multiple_handles.xml │ │ │ │ │ │ └── single_handle.xml │ │ │ │ │ └── _files │ │ │ │ │ ├── Fixture_Module │ │ │ │ │ └── registration.php │ │ │ │ │ ├── Magento │ │ │ │ │ ├── ModuleA │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── product │ │ │ │ │ │ │ └── product.css │ │ │ │ │ ├── ModuleB │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── gallery-image-base-label.png │ │ │ │ │ └── ModuleC │ │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── allinone.png │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── UiComponent │ │ │ │ │ ├── expected │ │ │ │ │ │ └── config.xml │ │ │ │ │ └── theme │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ └── theme.xml │ │ │ │ │ ├── fallback │ │ │ │ │ ├── app │ │ │ │ │ │ └── code │ │ │ │ │ │ │ └── ViewTest_Module │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ ├── design │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ ├── ViewTest_Module │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ └── fixture_template_two.phtml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── fixture_script_two.js │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── fixture_template_two.phtml │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── fixture_script_two.js │ │ │ │ │ │ │ │ └── mage │ │ │ │ │ │ │ │ └── script.js │ │ │ │ │ │ │ ├── custom_theme2 │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── ViewTest_Module │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ └── fixture_template.phtml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ ├── fixture_script.js │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ └── ru_RU │ │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── fixture_template.phtml │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── fixture_script.js │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── ru_RU │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ └── standalone_theme │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ └── lib │ │ │ │ │ │ └── web │ │ │ │ │ │ └── mage │ │ │ │ │ │ └── script.js │ │ │ │ │ ├── layout │ │ │ │ │ ├── cacheable.xml │ │ │ │ │ ├── container_attributes.xml │ │ │ │ │ ├── non_cacheable.xml │ │ │ │ │ ├── non_cacheable_block_with_declared_reference.xml │ │ │ │ │ └── non_cacheable_block_with_missing_refference.xml │ │ │ │ │ ├── layout_directives_test │ │ │ │ │ ├── action_for_anonymous_parent_block.xml │ │ │ │ │ ├── arguments.xml │ │ │ │ │ ├── arguments_complex_values.xml │ │ │ │ │ ├── arguments_object_type.xml │ │ │ │ │ ├── arguments_object_type_updaters.xml │ │ │ │ │ ├── arguments_url_type.xml │ │ │ │ │ ├── get_block.xml │ │ │ │ │ ├── group.xml │ │ │ │ │ ├── ifconfig.xml │ │ │ │ │ ├── move.xml │ │ │ │ │ ├── move_alias_broken.xml │ │ │ │ │ ├── move_broken.xml │ │ │ │ │ ├── move_new_alias.xml │ │ │ │ │ ├── move_the_same_alias.xml │ │ │ │ │ ├── remove.xml │ │ │ │ │ ├── remove_broken.xml │ │ │ │ │ ├── remove_cancellation.xml │ │ │ │ │ ├── render.xml │ │ │ │ │ ├── sort_after_after.xml │ │ │ │ │ ├── sort_after_previous.xml │ │ │ │ │ ├── sort_before_after.xml │ │ │ │ │ └── sort_before_before.xml │ │ │ │ │ ├── layout_with_exceptions │ │ │ │ │ └── layout.xml │ │ │ │ │ ├── static │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── styles.magento.min.css │ │ │ │ │ │ └── test.min.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── preminified-styles.min.css │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ └── js │ │ │ │ │ │ └── test.js │ │ │ │ │ └── test_template.phtml │ │ │ │ ├── GiftMessage │ │ │ │ ├── Model │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ └── OrderRepositoryTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── SalesEventQuoteMergeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── customer │ │ │ │ │ ├── order_with_message.php │ │ │ │ │ └── order_with_message_rollback.php │ │ │ │ │ ├── empty_order.php │ │ │ │ │ ├── guest │ │ │ │ │ ├── quote_with_item_message.php │ │ │ │ │ └── quote_with_item_message_rollback.php │ │ │ │ │ ├── order_with_message.php │ │ │ │ │ ├── quote_with_customer_and_message.php │ │ │ │ │ ├── quote_with_customer_and_message_rollback.php │ │ │ │ │ ├── quote_with_item_message.php │ │ │ │ │ ├── quote_with_item_message_rollback.php │ │ │ │ │ ├── quote_with_message.php │ │ │ │ │ ├── quote_with_message_rollback.php │ │ │ │ │ └── virtual_order.php │ │ │ │ ├── GoogleAdwords │ │ │ │ └── Model │ │ │ │ │ └── Validator │ │ │ │ │ └── FactoryTest.php │ │ │ │ ├── GoogleAnalytics │ │ │ │ └── Block │ │ │ │ │ └── GaTest.php │ │ │ │ ├── GoogleGtag │ │ │ │ └── Block │ │ │ │ │ └── GaTest.php │ │ │ │ ├── GraphQl │ │ │ │ ├── Catalog │ │ │ │ │ └── _files │ │ │ │ │ │ ├── apply_tax_for_simple_product.php │ │ │ │ │ │ ├── set_custom_options_simple_product.php │ │ │ │ │ │ ├── set_simple_product_out_of_stock.php │ │ │ │ │ │ ├── set_simple_product_special_price.php │ │ │ │ │ │ ├── set_simple_product_special_price_future_date.php │ │ │ │ │ │ ├── set_weight_to_simple_product.php │ │ │ │ │ │ ├── simple_product.php │ │ │ │ │ │ ├── simple_product_rollback.php │ │ │ │ │ │ ├── simple_product_with_numeric_sku.php │ │ │ │ │ │ ├── simple_product_with_numeric_sku_rollback.php │ │ │ │ │ │ ├── simple_product_with_zero_price.php │ │ │ │ │ │ ├── simple_product_with_zero_price_rollback.php │ │ │ │ │ │ ├── simple_product_without_visibility.php │ │ │ │ │ │ ├── simple_product_without_visibility_rollback.php │ │ │ │ │ │ ├── virtual_product.php │ │ │ │ │ │ └── virtual_product_rollback.php │ │ │ │ ├── Controller │ │ │ │ │ └── GraphQlControllerTest.php │ │ │ │ ├── FedEx │ │ │ │ │ └── _files │ │ │ │ │ │ ├── enable_fedex_shipping_method.php │ │ │ │ │ │ └── enable_fedex_shipping_method_rollback.php │ │ │ │ ├── GraphQlIntrospectionTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── Query │ │ │ │ │ │ └── Logger │ │ │ │ │ │ └── LogDataTest.php │ │ │ │ ├── Quote │ │ │ │ │ ├── GetMaskedQuoteIdByReservedOrderId.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── add_configurable_product.php │ │ │ │ │ │ ├── add_simple_product.php │ │ │ │ │ │ ├── add_simple_product_with_options.php │ │ │ │ │ │ ├── add_simple_product_with_zero_price.php │ │ │ │ │ │ ├── add_virtual_product.php │ │ │ │ │ │ ├── add_virtual_product_with_100_qty.php │ │ │ │ │ │ ├── add_virtual_product_with_100_qty_rollback.php │ │ │ │ │ │ ├── apply_coupon.php │ │ │ │ │ │ ├── apply_coupon_100percent_discount.php │ │ │ │ │ │ ├── apply_coupon_100percent_rollback.php │ │ │ │ │ │ ├── apply_coupon_rollback.php │ │ │ │ │ │ ├── cart_rule_discount_no_coupon.php │ │ │ │ │ │ ├── cart_rule_discount_no_coupon_rollback.php │ │ │ │ │ │ ├── customer │ │ │ │ │ │ ├── create_empty_cart.php │ │ │ │ │ │ ├── create_empty_cart_rollback.php │ │ │ │ │ │ ├── create_empty_cart_without_masked_quote_id.php │ │ │ │ │ │ └── create_empty_cart_without_masked_quote_id_rollback.php │ │ │ │ │ │ ├── disable_all_active_payment_methods.php │ │ │ │ │ │ ├── disable_all_active_payment_methods_rollback.php │ │ │ │ │ │ ├── disable_guest_checkout.php │ │ │ │ │ │ ├── disable_guest_checkout_rollback.php │ │ │ │ │ │ ├── disable_offline_shipping_methods.php │ │ │ │ │ │ ├── disable_offline_shipping_methods_rollback.php │ │ │ │ │ │ ├── enable_offline_payment_methods.php │ │ │ │ │ │ ├── enable_offline_payment_methods_rollback.php │ │ │ │ │ │ ├── enable_offline_shipping_methods.php │ │ │ │ │ │ ├── enable_offline_shipping_methods_rollback.php │ │ │ │ │ │ ├── guest │ │ │ │ │ │ ├── create_empty_cart.php │ │ │ │ │ │ ├── create_empty_cart_rollback.php │ │ │ │ │ │ ├── quote_with_address.php │ │ │ │ │ │ ├── quote_with_address_rollback.php │ │ │ │ │ │ └── set_guest_email.php │ │ │ │ │ │ ├── make_cart_inactive.php │ │ │ │ │ │ ├── restrict_coupon_usage_for_simple_product.php │ │ │ │ │ │ ├── restrict_coupon_usage_for_simple_product_rollback.php │ │ │ │ │ │ ├── set_checkmo_payment_method.php │ │ │ │ │ │ ├── set_flatrate_shipping_method.php │ │ │ │ │ │ ├── set_freeshipping_shipping_method.php │ │ │ │ │ │ ├── set_gift_options.php │ │ │ │ │ │ ├── set_multishipping_with_two_shipping_addresses.php │ │ │ │ │ │ ├── set_new_billing_address.php │ │ │ │ │ │ ├── set_new_billing_address_without_telephone.php │ │ │ │ │ │ ├── set_new_shipping_address.php │ │ │ │ │ │ └── set_new_shipping_canada_address.php │ │ │ │ ├── Sales │ │ │ │ │ └── _files │ │ │ │ │ │ ├── address_data.php │ │ │ │ │ │ ├── customer_order_with_multiple_shipments.php │ │ │ │ │ │ ├── customer_order_with_multiple_shipments_rollback.php │ │ │ │ │ │ ├── customer_order_with_simple_shipment.php │ │ │ │ │ │ ├── customer_order_with_simple_shipment_rollback.php │ │ │ │ │ │ ├── customer_order_with_ups_shipping.php │ │ │ │ │ │ ├── customer_order_with_ups_shipping_rollback.php │ │ │ │ │ │ ├── order_with_totals.php │ │ │ │ │ │ ├── order_with_totals_rollback.php │ │ │ │ │ │ ├── orders_with_customer.php │ │ │ │ │ │ ├── orders_with_customer_rollback.php │ │ │ │ │ │ ├── two_orders_with_order_items_two_storeviews.php │ │ │ │ │ │ └── two_orders_with_order_items_two_storeviews_rollback.php │ │ │ │ ├── Service │ │ │ │ │ └── GraphQlRequest.php │ │ │ │ ├── Tax │ │ │ │ │ └── _files │ │ │ │ │ │ ├── tax_calculation_price_and_cart_display_settings.php │ │ │ │ │ │ ├── tax_calculation_price_and_cart_display_settings_rollback.php │ │ │ │ │ │ ├── tax_calculation_shipping_and_order_display_settings.php │ │ │ │ │ │ ├── tax_calculation_shipping_and_order_display_settings_rollback.php │ │ │ │ │ │ ├── tax_calculation_shipping_excludeTax_order_display_settings.php │ │ │ │ │ │ ├── tax_calculation_shipping_excludeTax_order_display_settings_rollback.php │ │ │ │ │ │ ├── tax_rule_for_region_1.php │ │ │ │ │ │ ├── tax_rule_for_region_1_rollback.php │ │ │ │ │ │ ├── tax_rule_for_region_al.php │ │ │ │ │ │ ├── tax_rule_for_region_al_rollback.php │ │ │ │ │ │ ├── tax_rule_for_region_with_translated_titles.php │ │ │ │ │ │ └── tax_rule_for_region_with_translated_titles_rollback.php │ │ │ │ ├── Usps │ │ │ │ │ └── _files │ │ │ │ │ │ ├── enable_usps_shipping_method.php │ │ │ │ │ │ └── enable_usps_shipping_method_rollback.php │ │ │ │ └── Weee │ │ │ │ │ └── _files │ │ │ │ │ ├── add_fpt_for_region_1.php │ │ │ │ │ ├── add_simple_product_with_fpt_to_cart.php │ │ │ │ │ └── apply_tax_for_simple_product_with_fpt.php │ │ │ │ ├── GraphQlCache │ │ │ │ └── Controller │ │ │ │ │ ├── AbstractGraphqlCacheTest.php │ │ │ │ │ ├── Catalog │ │ │ │ │ ├── CategoriesWithProductsCacheTest.php │ │ │ │ │ ├── CategoryCacheTest.php │ │ │ │ │ ├── CategoryListMultipleIdsCacheTest.php │ │ │ │ │ ├── CategoryListSingleIdCacheTest.php │ │ │ │ │ ├── DeepNestedCategoriesAndProductsTest.php │ │ │ │ │ └── ProductsCacheTest.php │ │ │ │ │ ├── Cms │ │ │ │ │ ├── BlockCacheTest.php │ │ │ │ │ └── CmsPageCacheTest.php │ │ │ │ │ └── UrlRewrite │ │ │ │ │ └── AllEntitiesUrlResolverCacheTest.php │ │ │ │ ├── GroupedImportExport │ │ │ │ └── Model │ │ │ │ │ ├── GroupedTest.php │ │ │ │ │ └── Import │ │ │ │ │ ├── Product │ │ │ │ │ └── Type │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── grouped_product.csv │ │ │ │ │ ├── grouped_product_children_in_stock.csv │ │ │ │ │ └── grouped_product_children_out_of_stock.csv │ │ │ │ ├── GroupedProduct │ │ │ │ ├── Block │ │ │ │ │ └── Order │ │ │ │ │ │ └── Email │ │ │ │ │ │ └── Items │ │ │ │ │ │ └── CreditMemo │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Inventory │ │ │ │ │ │ └── ParentItemProcessorTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ ├── ProductLink │ │ │ │ │ │ └── GroupedProductLinkQueryTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ └── Grouped │ │ │ │ │ │ └── AssociatedProductsCollectionTest.php │ │ │ │ ├── Pricing │ │ │ │ │ └── Price │ │ │ │ │ │ └── FinalPriceTest.php │ │ │ │ └── _files │ │ │ │ │ ├── empty_grouped_product.php │ │ │ │ │ ├── empty_grouped_product_rollback.php │ │ │ │ │ ├── product_grouped.php │ │ │ │ │ ├── product_grouped_in_multiple_websites.php │ │ │ │ │ ├── product_grouped_in_multiple_websites_rollback.php │ │ │ │ │ ├── product_grouped_items_in_multiple_websites.php │ │ │ │ │ ├── product_grouped_items_in_multiple_websites_rollback.php │ │ │ │ │ ├── product_grouped_rollback.php │ │ │ │ │ ├── product_grouped_with_out_of_stock.php │ │ │ │ │ ├── product_grouped_with_out_of_stock_rollback.php │ │ │ │ │ ├── product_grouped_with_simple.php │ │ │ │ │ ├── product_grouped_with_simple_out_of_stock.php │ │ │ │ │ ├── product_grouped_with_simple_out_of_stock_rollback.php │ │ │ │ │ └── product_grouped_with_simple_rollback.php │ │ │ │ ├── ImportExport │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Export │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ └── FilterTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ └── Edit │ │ │ │ │ │ ├── BeforeTest.php │ │ │ │ │ │ └── FormTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Export │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ └── File │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ └── DownloadTest.php │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ ├── Import │ │ │ │ │ │ ├── HttpFactoryMock.php │ │ │ │ │ │ ├── ValidateImportTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── catalog_product.csv │ │ │ │ │ │ │ ├── catalog_product.zip │ │ │ │ │ │ │ ├── incorrect_catalog_product_comma.csv │ │ │ │ │ │ │ ├── incorrect_catalog_product_semicolon.csv │ │ │ │ │ │ │ ├── invalid_catalog_products.csv │ │ │ │ │ │ │ ├── invalid_catalog_products.zip │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ ├── ImportResultTest.php │ │ │ │ │ │ ├── ImportTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── products_duplicate_category.csv │ │ │ │ ├── Model │ │ │ │ │ ├── Export │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ └── CsvTest.php │ │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── AbstractEavTest.php │ │ │ │ │ │ └── EntityAbstractTest.php │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ ├── Import │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ ├── EavAbstractTest.php │ │ │ │ │ │ │ ├── EntityAbstractTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── advanced_price_for_validation_test.csv │ │ │ │ │ │ │ │ └── customers_for_validation_test.csv │ │ │ │ │ │ └── EntityAbstractTest.php │ │ │ │ │ ├── ImportTest.php │ │ │ │ │ ├── Report │ │ │ │ │ │ └── CsvTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ └── Source │ │ │ │ │ │ └── Import │ │ │ │ │ │ └── EntityTest.php │ │ │ │ └── _files │ │ │ │ │ ├── export_queue_data.php │ │ │ │ │ ├── export_queue_data_rollback.php │ │ │ │ │ ├── import_data.php │ │ │ │ │ └── product.php │ │ │ │ ├── Indexer │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── IndexerReindexCommandTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── IndexerTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── dependency_on_not_existing_indexer.xml │ │ │ │ │ │ │ ├── indexer.xml │ │ │ │ │ │ │ ├── indexer_with_circular_dependency.xml │ │ │ │ │ │ │ └── result.php │ │ │ │ │ └── Indexer │ │ │ │ │ │ └── DeferCacheCleaningTest.php │ │ │ │ └── _files │ │ │ │ │ ├── reindex_all_invalid.php │ │ │ │ │ ├── wrong_config_data.php │ │ │ │ │ └── wrong_config_data_rollback.php │ │ │ │ ├── InstantPurchase │ │ │ │ ├── CustomerData │ │ │ │ │ ├── InstantPurchaseTest.php │ │ │ │ │ └── StubPaymentTokenFormatter.php │ │ │ │ ├── Model │ │ │ │ │ ├── InstantPurchaseTest.php │ │ │ │ │ └── PlaceOrderTest.php │ │ │ │ └── _files │ │ │ │ │ └── fake_payment_token.php │ │ │ │ ├── Integration │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Integration │ │ │ │ │ │ ├── Activate │ │ │ │ │ │ │ └── Permissions │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── WebapiTest.php │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ └── TokensTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── OauthSectionTest.php │ │ │ │ │ │ └── Widget │ │ │ │ │ │ └── Grid │ │ │ │ │ │ └── Column │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ └── Link │ │ │ │ │ │ └── ActivateTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Integration │ │ │ │ │ │ └── TokensExchangeTest.php │ │ │ │ │ │ └── IntegrationTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AdminTokenServiceTest.php │ │ │ │ │ ├── AuthorizationServiceTest.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Consolidated │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── integration.php │ │ │ │ │ │ │ │ ├── integrationA.xml │ │ │ │ │ │ │ │ └── integrationB.xml │ │ │ │ │ │ ├── Integration │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── api.php │ │ │ │ │ │ │ │ ├── apiA.xml │ │ │ │ │ │ │ │ └── apiB.xml │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── configA.xml │ │ │ │ │ │ │ ├── configB.xml │ │ │ │ │ │ │ └── integration.php │ │ │ │ │ ├── ConfigBasedIntegrationManagerTest.php │ │ │ │ │ ├── CustomerTokenServiceTest.php │ │ │ │ │ ├── OpaqueToken │ │ │ │ │ │ ├── IssuerTest.php │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ └── RevokerTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ ├── IntegrationTest.php │ │ │ │ │ │ └── Oauth │ │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ │ └── TokenTest.php │ │ │ │ └── _files │ │ │ │ │ ├── customer_with_integration_token.php │ │ │ │ │ ├── customer_with_integration_token_rollback.php │ │ │ │ │ ├── integration_all_data.php │ │ │ │ │ ├── integration_all_data_rollback.php │ │ │ │ │ ├── integration_all_permissions.php │ │ │ │ │ └── integration_all_permissions_rollback.php │ │ │ │ ├── IntegrationTest.php │ │ │ │ ├── JwtFrameworkAdapter │ │ │ │ └── Model │ │ │ │ │ └── JwsManagerTest.php │ │ │ │ ├── JwtUserToken │ │ │ │ ├── Api │ │ │ │ │ └── RevokedRepositoryTest.php │ │ │ │ └── Model │ │ │ │ │ ├── IssuerTest.php │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ └── RevokerTest.php │ │ │ │ ├── LayeredNavigation │ │ │ │ └── Block │ │ │ │ │ └── Navigation │ │ │ │ │ ├── AbstractFiltersTest.php │ │ │ │ │ ├── Category │ │ │ │ │ ├── BooleanFilterTest.php │ │ │ │ │ ├── Bundle │ │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ │ ├── Configurable │ │ │ │ │ │ └── PriceFilterTest.php │ │ │ │ │ ├── DecimalFilterTest.php │ │ │ │ │ ├── FilterScopeTest.php │ │ │ │ │ ├── MultipleFiltersTest.php │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ ├── OutOfStockProductsFilterTest.php │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ └── Search │ │ │ │ │ ├── BooleanFilterTest.php │ │ │ │ │ ├── Bundle │ │ │ │ │ └── PriceFilterTest.php │ │ │ │ │ ├── DecimalFilterTest.php │ │ │ │ │ ├── MultipleFiltersTest.php │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ ├── OutOfStockProductsFilterTest.php │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ ├── LoginAsCustomer │ │ │ │ └── _files │ │ │ │ │ ├── admin.php │ │ │ │ │ ├── admin_rollback.php │ │ │ │ │ └── customer.php │ │ │ │ ├── MediaContent │ │ │ │ └── Model │ │ │ │ │ ├── ExtractAssetsFromContentTest.php │ │ │ │ │ ├── SaveDeleteContentAssetLinksTest.php │ │ │ │ │ └── UpdateContentAssetLinksTest.php │ │ │ │ ├── MediaContentCatalog │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ ├── GetAssetIdsByContentFieldTest.php │ │ │ │ │ │ └── GetEntityContentTest.php │ │ │ │ └── _files │ │ │ │ │ ├── category_with_asset.php │ │ │ │ │ ├── category_with_asset_rollback.php │ │ │ │ │ ├── product_with_asset.php │ │ │ │ │ └── product_with_asset_rollback.php │ │ │ │ ├── MediaContentCms │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── GetAssetIdsByContentFieldTest.php │ │ │ │ └── _files │ │ │ │ │ ├── block_with_asset.php │ │ │ │ │ ├── block_with_asset_rollback.php │ │ │ │ │ ├── page_with_asset.php │ │ │ │ │ └── page_with_asset_rollback.php │ │ │ │ ├── MediaGallery │ │ │ │ ├── Model │ │ │ │ │ ├── AssetEndToEndTest.php │ │ │ │ │ ├── Directory │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ ├── CreateByPathsTest.php │ │ │ │ │ │ │ └── DeleteByPathsTest.php │ │ │ │ │ │ └── IsExcludedTest.php │ │ │ │ │ ├── IsExcludedTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── AssetKeywordsTest.php │ │ │ │ │ │ ├── AssetsByIdsTest.php │ │ │ │ │ │ ├── AssetsTest.php │ │ │ │ │ │ └── DeleteAssetsTest.php │ │ │ │ │ └── SearchAssetsTest.php │ │ │ │ └── _files │ │ │ │ │ ├── media_asset.php │ │ │ │ │ ├── media_asset_loaded_year_ago.php │ │ │ │ │ ├── media_asset_loaded_year_ago_rollback.php │ │ │ │ │ └── media_asset_rollback.php │ │ │ │ ├── MediaGallerySynchronizationMetadata │ │ │ │ ├── Model │ │ │ │ │ └── SynchronizeFilesTest.php │ │ │ │ └── _files │ │ │ │ │ ├── magento.jpg │ │ │ │ │ └── magento_metadata.jpg │ │ │ │ ├── MediaGalleryUi │ │ │ │ └── Model │ │ │ │ │ └── Listing │ │ │ │ │ └── DataProviderTest.php │ │ │ │ ├── MediaStorage │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ └── ImageResizeCommandTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── File │ │ │ │ │ │ └── Storage │ │ │ │ │ │ └── DatabaseTest.php │ │ │ │ ├── Model │ │ │ │ │ └── File │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ └── ResponseTest.php │ │ │ │ │ │ └── StorageTest.php │ │ │ │ └── _files │ │ │ │ │ ├── database_mode.php │ │ │ │ │ ├── database_mode_rollback.php │ │ │ │ │ ├── product_with_missed_image.php │ │ │ │ │ ├── product_with_missed_image_rollback.php │ │ │ │ │ └── test_file.html │ │ │ │ ├── MemoryUsageTest.php │ │ │ │ ├── MessageQueue │ │ │ │ └── Model │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ ├── Cron │ │ │ │ │ └── ConsumersRunnerTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── LockTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ └── LockTest.php │ │ │ │ ├── MsrpGroupedProduct │ │ │ │ └── Pricing │ │ │ │ │ └── MsrpPriceCalculatorTest.php │ │ │ │ ├── Multishipping │ │ │ │ ├── Block │ │ │ │ │ └── Checkout │ │ │ │ │ │ ├── Address │ │ │ │ │ │ └── SelectTest.php │ │ │ │ │ │ ├── AddressesTest.php │ │ │ │ │ │ └── OverviewTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Checkout │ │ │ │ │ │ ├── AddressesPostTest.php │ │ │ │ │ │ └── CheckItemsTest.php │ │ │ │ │ └── CheckoutTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── billing_address.php │ │ │ │ │ ├── items.php │ │ │ │ │ ├── items_rollback.php │ │ │ │ │ ├── quote.php │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ ├── quote_with_configurable_product.php │ │ │ │ │ ├── quote_with_configurable_product_rollback.php │ │ │ │ │ ├── quote_with_split_items.php │ │ │ │ │ ├── simple_product_10.php │ │ │ │ │ ├── simple_product_10_rollback.php │ │ │ │ │ ├── simple_product_20.php │ │ │ │ │ ├── simple_product_20_rollback.php │ │ │ │ │ ├── virtual_product_5.php │ │ │ │ │ └── virtual_product_5_rollback.php │ │ │ │ ├── Model │ │ │ │ │ └── Checkout │ │ │ │ │ │ └── Type │ │ │ │ │ │ └── MultishippingTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── DisableMultishippingObserverTest.php │ │ │ │ └── Plugin │ │ │ │ │ └── DisableMultishippingModeTest.php │ │ │ │ ├── MysqlMq │ │ │ │ ├── Model │ │ │ │ │ ├── Driver │ │ │ │ │ │ └── QueueTest.php │ │ │ │ │ ├── ObserverTest.php │ │ │ │ │ ├── PublisherConsumerTest.php │ │ │ │ │ └── QueueManagementTest.php │ │ │ │ └── _files │ │ │ │ │ ├── messages.php │ │ │ │ │ ├── messages_done_old.php │ │ │ │ │ ├── messages_done_recent.php │ │ │ │ │ ├── messages_in_progress.php │ │ │ │ │ └── queues.php │ │ │ │ ├── NewRelicReporting │ │ │ │ ├── Model │ │ │ │ │ └── Module │ │ │ │ │ │ └── CollectTest.php │ │ │ │ └── Plugin │ │ │ │ │ └── SeparateAppsTest.php │ │ │ │ ├── Newsletter │ │ │ │ ├── Block │ │ │ │ │ ├── Account │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── SubscriberTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── NewsletterQueueTest.php │ │ │ │ │ │ ├── NewsletterTemplateTest.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ └── DropTest.php │ │ │ │ │ ├── Ajax │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ ├── Manage │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ └── NewActionTest.php │ │ │ │ │ └── SubscriberTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── PluginTest.php │ │ │ │ │ ├── QueueTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Problem │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── SubscriberTest.php │ │ │ │ │ ├── SubscriberTest.php │ │ │ │ │ └── TemplateTest.php │ │ │ │ └── _files │ │ │ │ │ ├── customer_with_subscription.php │ │ │ │ │ ├── customer_with_subscription_rollback.php │ │ │ │ │ ├── guest_subscriber.php │ │ │ │ │ ├── guest_subscriber_rollback.php │ │ │ │ │ ├── newsletter_sample.php │ │ │ │ │ ├── newsletter_unconfirmed_customer.php │ │ │ │ │ ├── newsletter_unconfirmed_customer_rollback.php │ │ │ │ │ ├── problems.php │ │ │ │ │ ├── queue.php │ │ │ │ │ ├── subscribers.php │ │ │ │ │ ├── subscribers_rollback.php │ │ │ │ │ ├── template.php │ │ │ │ │ ├── three_subscribers.php │ │ │ │ │ └── three_subscribers_rollback.php │ │ │ │ ├── OfflineShipping │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ └── ImportExportTableratesTest.php │ │ │ │ ├── Model │ │ │ │ │ └── CollectRatesTest.php │ │ │ │ └── _files │ │ │ │ │ ├── tablerate_create_file_in_tmp.php │ │ │ │ │ ├── tablerate_create_file_in_tmp_rollback.php │ │ │ │ │ ├── tablerates.csv │ │ │ │ │ ├── tablerates.php │ │ │ │ │ ├── tablerates_price.php │ │ │ │ │ ├── tablerates_price_rollback.php │ │ │ │ │ ├── tablerates_rollback.php │ │ │ │ │ ├── tablerates_second_website.php │ │ │ │ │ ├── tablerates_second_website_rollback.php │ │ │ │ │ ├── tablerates_weight.php │ │ │ │ │ └── tablerates_weight_rollback.php │ │ │ │ ├── OpenSearch │ │ │ │ └── SearchAdapter │ │ │ │ │ └── ConnectionManagerTest.php │ │ │ │ ├── PageCache │ │ │ │ ├── Block │ │ │ │ │ ├── JavascriptTest.php │ │ │ │ │ └── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Field │ │ │ │ │ │ └── ExportTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── DepersonalizePluginTest.php │ │ │ │ │ │ └── MergeTest.php │ │ │ │ │ ├── System │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ ├── TtlTest.php │ │ │ │ │ │ │ └── VarnishTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── result.vcl │ │ │ │ │ │ └── test.vcl │ │ │ │ ├── Observer │ │ │ │ │ └── SwitchPageCacheOnMaintenance │ │ │ │ │ │ └── PageCacheStateTest.php │ │ │ │ └── Plugin │ │ │ │ │ └── RegisterFormKeyFromCookieTest.php │ │ │ │ ├── Payment │ │ │ │ ├── Block │ │ │ │ │ ├── InfoTest.php │ │ │ │ │ └── Transparent │ │ │ │ │ │ └── IframeTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── PaymentInfoTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── payment.xml │ │ │ │ │ │ └── payment2.xml │ │ │ │ ├── Observer │ │ │ │ │ └── UpdateOrderStatusForPaymentMethodsObserverTest.php │ │ │ │ └── _files │ │ │ │ │ ├── order_status.php │ │ │ │ │ └── payment_info.php │ │ │ │ ├── Paypal │ │ │ │ ├── Adminhtml │ │ │ │ │ └── Paypal │ │ │ │ │ │ └── ReportsTest.php │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ ├── Billing │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ ├── Bml │ │ │ │ │ │ └── BannersTest.php │ │ │ │ │ ├── Express │ │ │ │ │ │ ├── Review │ │ │ │ │ │ │ └── BillingTest.php │ │ │ │ │ │ └── ReviewTest.php │ │ │ │ │ ├── PayLater │ │ │ │ │ │ └── BannerTest.php │ │ │ │ │ └── Payment │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Billing │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ ├── Agreement │ │ │ │ │ │ │ │ ├── CancelTest.php │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ │ │ ├── Express │ │ │ │ │ │ │ └── AuthorizationTest.php │ │ │ │ │ │ ├── Paypal │ │ │ │ │ │ │ └── Reports │ │ │ │ │ │ │ │ ├── DetailsTest.php │ │ │ │ │ │ │ │ ├── FetchTest.php │ │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ └── Transparent │ │ │ │ │ │ │ └── ResponseTest.php │ │ │ │ │ ├── Billing │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ │ ├── ExpressTest.php │ │ │ │ │ ├── Hostedpro │ │ │ │ │ │ └── ReturnActionTest.php │ │ │ │ │ ├── HostedproTest.php │ │ │ │ │ ├── Payflow │ │ │ │ │ │ └── SilentPostTest.php │ │ │ │ │ ├── PayflowTest.php │ │ │ │ │ ├── PayflowadvancedTest.php │ │ │ │ │ └── Transparent │ │ │ │ │ │ ├── RedirectTest.php │ │ │ │ │ │ └── ResponseTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── default_payment_configuration.php │ │ │ │ │ ├── default_payment_configuration_rollback.php │ │ │ │ │ ├── store_payment_configuration.php │ │ │ │ │ ├── store_payment_configuration_rollback.php │ │ │ │ │ ├── website_payment_configuration.php │ │ │ │ │ └── website_payment_configuration_rollback.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── NvpTest.php │ │ │ │ │ │ └── PayflowNvpTest.php │ │ │ │ │ ├── Express │ │ │ │ │ │ └── CheckoutTest.php │ │ │ │ │ ├── Hostedpro │ │ │ │ │ │ └── RequestTest.php │ │ │ │ │ ├── HostedproTest.php │ │ │ │ │ ├── IpnTest.php │ │ │ │ │ ├── PayLaterConfigTest.php │ │ │ │ │ ├── Payflow │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ └── Request │ │ │ │ │ │ │ │ └── SecureTokenTest.php │ │ │ │ │ │ └── TransparentTest.php │ │ │ │ │ ├── PayflowproTest.php │ │ │ │ │ ├── PayflowproVoidTest.php │ │ │ │ │ ├── Payment │ │ │ │ │ │ └── Method │ │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ └── AbstractAgreementTest.php │ │ │ │ │ ├── Report │ │ │ │ │ │ └── SettlementTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Billing │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── address_data.php │ │ │ │ │ ├── billing_agreement.php │ │ │ │ │ ├── fixed_discount.php │ │ │ │ │ ├── fixed_discount_rollback.php │ │ │ │ │ ├── ipn.php │ │ │ │ │ ├── ipn_failed.php │ │ │ │ │ ├── ipn_refund.php │ │ │ │ │ ├── order_express.php │ │ │ │ │ ├── order_express_payment_action_order.php │ │ │ │ │ ├── order_express_with_invoice_and_creditmemo.php │ │ │ │ │ ├── order_express_with_invoice_and_shipping.php │ │ │ │ │ ├── order_express_with_invoice_payment_review.php │ │ │ │ │ ├── order_express_with_tax.php │ │ │ │ │ ├── order_hostedpro.php │ │ │ │ │ ├── order_payflow_link.php │ │ │ │ │ ├── order_payflow_link_with_payment.php │ │ │ │ │ ├── order_payflow_link_with_payment_rollback.php │ │ │ │ │ ├── order_payflowpro.php │ │ │ │ │ ├── quote_express.php │ │ │ │ │ ├── quote_express_configurable.php │ │ │ │ │ ├── quote_express_with_customer.php │ │ │ │ │ ├── quote_order_hostedpro.php │ │ │ │ │ ├── quote_payflowpro.php │ │ │ │ │ ├── quote_payflowpro_rollback.php │ │ │ │ │ ├── quote_payment.php │ │ │ │ │ ├── quote_payment_express.php │ │ │ │ │ ├── quote_payment_express_with_customer.php │ │ │ │ │ ├── quote_payment_payflow.php │ │ │ │ │ ├── quote_with_fpt.php │ │ │ │ │ └── virtual_quote_with_empty_billing_address.php │ │ │ │ ├── PaypalGraphQl │ │ │ │ ├── Model │ │ │ │ │ └── Resolver │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ ├── PaypalExpressSetPaymentMethodTest.php │ │ │ │ │ │ ├── PaypalExpressTokenTest.php │ │ │ │ │ │ ├── PlaceOrderWithPayflowLinkTest.php │ │ │ │ │ │ ├── PlaceOrderWithPayflowProCCVaultTest.php │ │ │ │ │ │ ├── PlaceOrderWithPayflowProTest.php │ │ │ │ │ │ └── SaveCartDataWithPayflowProTest.php │ │ │ │ │ │ └── Guest │ │ │ │ │ │ ├── GetHostedProSecureUrlTest.php │ │ │ │ │ │ ├── GetPayflowLinkTokenTest.php │ │ │ │ │ │ ├── PaypalExpressSetPaymentMethodTest.php │ │ │ │ │ │ ├── PaypalExpressTokenTest.php │ │ │ │ │ │ ├── PaypalPayflowProSetPaymentMethodTest.php │ │ │ │ │ │ ├── PaypalPayflowProTokenExceptionTest.php │ │ │ │ │ │ ├── PaypalPayflowProTokenTest.php │ │ │ │ │ │ ├── PlaceOrderWithHostedProTest.php │ │ │ │ │ │ ├── PlaceOrderWithPayflowLinkTest.php │ │ │ │ │ │ ├── PlaceOrderWithPaymentsAdvancedTest.php │ │ │ │ │ │ └── SetPaymentMethodAsPayflowLinkTest.php │ │ │ │ ├── PaypalExpressAbstractTest.php │ │ │ │ ├── PaypalPayflowProAbstractTest.php │ │ │ │ └── _files │ │ │ │ │ ├── add_simple_product_payflowLink.php │ │ │ │ │ ├── customer_paypal_create_token_request.php │ │ │ │ │ ├── guest_paypal_create_token_request.php │ │ │ │ │ ├── hosted_pro_nvp_request.php │ │ │ │ │ ├── hosted_pro_nvp_response.php │ │ │ │ │ ├── paypal_place_order_request.php │ │ │ │ │ └── paypal_set_payer_id_repsonse.php │ │ │ │ ├── Persistent │ │ │ │ ├── Block │ │ │ │ │ ├── Form │ │ │ │ │ │ └── RememberTest.php │ │ │ │ │ └── Header │ │ │ │ │ │ └── AdditionalTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── SessionTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Checkout │ │ │ │ │ │ ├── ConfigProviderPluginTest.php │ │ │ │ │ │ └── GuestPaymentInformationManagementPluginTest.php │ │ │ │ │ ├── CheckoutConfigProviderTest.php │ │ │ │ │ ├── ObserverTest.php │ │ │ │ │ ├── Persistent │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── expectedArray.php │ │ │ │ │ │ │ ├── expectedBlocksArray.php │ │ │ │ │ │ │ └── persistent.xml │ │ │ │ │ ├── QuoteManagerTest.php │ │ │ │ │ └── SessionTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── EmulateCustomerObserverTest.php │ │ │ │ │ ├── EmulateQuoteObserverTest.php │ │ │ │ │ ├── SynchronizePersistentOnLoginObserverTest.php │ │ │ │ │ └── SynchronizePersistentOnLogoutObserverTest.php │ │ │ │ └── _files │ │ │ │ │ ├── persistent.php │ │ │ │ │ ├── persistent_rollback.php │ │ │ │ │ ├── persistent_with_customer_quote_and_cookie.php │ │ │ │ │ └── persistent_with_customer_quote_and_cookie_rollback.php │ │ │ │ ├── Phpserver │ │ │ │ └── PhpserverTest.php │ │ │ │ ├── ProductAlert │ │ │ │ ├── Controller │ │ │ │ │ ├── Add │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ └── Unsubscribe │ │ │ │ │ │ └── StockTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ ├── Mailing │ │ │ │ │ │ └── AlertProcessorTest.php │ │ │ │ │ └── ObserverTest.php │ │ │ │ └── _files │ │ │ │ │ ├── customer_unsubscribe_stock.php │ │ │ │ │ ├── customer_unsubscribe_stock_rollback.php │ │ │ │ │ ├── i18n │ │ │ │ │ └── pt_BR.csv │ │ │ │ │ ├── price_alert_on_second_website.php │ │ │ │ │ ├── price_alert_on_second_website_rollback.php │ │ │ │ │ ├── product_alert.php │ │ │ │ │ ├── product_alert_rollback.php │ │ │ │ │ ├── product_alert_with_store.php │ │ │ │ │ ├── product_alert_with_store_rollback.php │ │ │ │ │ ├── simple_product_with_two_alerts.php │ │ │ │ │ ├── simple_product_with_two_alerts_rollback.php │ │ │ │ │ ├── stock_alert_on_second_website.php │ │ │ │ │ └── stock_alert_on_second_website_rollback.php │ │ │ │ ├── Quote │ │ │ │ ├── Fixtures │ │ │ │ │ ├── quote_sec_website.php │ │ │ │ │ ├── quote_sec_website_rollback.php │ │ │ │ │ ├── quote_without_customer_email.php │ │ │ │ │ ├── simple_product.php │ │ │ │ │ └── simple_product_rollback.php │ │ │ │ ├── Model │ │ │ │ │ ├── CustomerManagementTest.php │ │ │ │ │ ├── MaskedQuoteIdToQuoteIdTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── UpdateQuoteStoreTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ ├── RemoveQuoteItemsTest.php │ │ │ │ │ │ │ ├── UpdateQuoteItemsTest.php │ │ │ │ │ │ │ └── UpdateQuoteTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ ├── CartItemPersisterTest.php │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ └── UpdaterTest.php │ │ │ │ │ ├── QuoteIdToMaskedQuoteIdTest.php │ │ │ │ │ ├── QuoteInfiniteLoopTest.php │ │ │ │ │ ├── QuoteManagementTest.php │ │ │ │ │ ├── QuoteManagementWithInventoryCheckDisabledTest.php │ │ │ │ │ ├── QuoteMutexTest.php │ │ │ │ │ ├── QuoteRepositoryTest.php │ │ │ │ │ ├── QuoteTest.php │ │ │ │ │ ├── QuoteValidatorTest.php │ │ │ │ │ └── ShippingMethodManagementTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── Frontend │ │ │ │ │ │ └── Quote │ │ │ │ │ │ └── Address │ │ │ │ │ │ └── CollectTotalsObserverTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── empty_quote.php │ │ │ │ │ ├── empty_quote_rollback.php │ │ │ │ │ ├── is_not_salable_product.php │ │ │ │ │ ├── is_salable_product.php │ │ │ │ │ ├── quote_for_configurable_product.php │ │ │ │ │ ├── quote_for_configurable_product_rollback.php │ │ │ │ │ ├── quote_for_customer_and_custom_store.php │ │ │ │ │ └── quote_for_customer_and_custom_store_rollback.php │ │ │ │ └── etc │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── ReleaseNotification │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Dashboard │ │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Viewer │ │ │ │ │ │ └── LoggerTest.php │ │ │ │ └── _files │ │ │ │ │ └── validContent.php │ │ │ │ ├── Reports │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Field │ │ │ │ │ │ │ └── YtdStartTest.php │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ ├── Sales │ │ │ │ │ │ ├── Bestsellers │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Coupons │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Invoiced │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Refunded │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Sales │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Shipping │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── Tax │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── Shopcart │ │ │ │ │ │ ├── Abandoned │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── GridTestAbstract.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── GridTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Report │ │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── SoldTest.php │ │ │ │ │ │ └── ViewedTest.php │ │ │ │ │ │ └── Statistics │ │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Product │ │ │ │ │ │ └── DataRetrieverTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Lowstock │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Viewed │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Sold │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Review │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── orders.php │ │ │ │ │ ├── recently_compared_out_of_stock_product.php │ │ │ │ │ ├── recently_compared_out_of_stock_product_rollback.php │ │ │ │ │ ├── recently_compared_product.php │ │ │ │ │ ├── recently_compared_product_rollback.php │ │ │ │ │ ├── recently_compared_product_second_website.php │ │ │ │ │ ├── recently_compared_product_second_website_rollback.php │ │ │ │ │ ├── recently_viewed_disabled_product_by_customer.php │ │ │ │ │ ├── recently_viewed_disabled_product_by_customer_rollback.php │ │ │ │ │ ├── recently_viewed_product_by_customer.php │ │ │ │ │ ├── recently_viewed_product_by_customer_rollback.php │ │ │ │ │ ├── recently_viewed_product_by_customer_second_website.php │ │ │ │ │ ├── recently_viewed_product_by_customer_second_website_rollback.php │ │ │ │ │ └── viewed_products.php │ │ │ │ ├── Review │ │ │ │ ├── Block │ │ │ │ │ ├── Account │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ └── ReviewsTest.php │ │ │ │ │ │ └── MainTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ │ ├── ListCustomerTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ ├── FormTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── ReviewRendererTest.php │ │ │ │ │ └── ViewTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ └── ProductReviewsTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ └── MassUpdateTest.php │ │ │ │ │ ├── CaseCheckAddingProductReviewTest.php │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ ├── Rating │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── RatingTest.php │ │ │ │ │ │ └── Review │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── ReviewTest.php │ │ │ │ │ │ └── Summary │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── ProcessProductAfterDeleteEventObserverTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── ReviewDataProviderTest.php │ │ │ │ └── _files │ │ │ │ │ ├── config.php │ │ │ │ │ ├── customer_review.php │ │ │ │ │ ├── customer_review_with_rating.php │ │ │ │ │ ├── customer_review_with_rating_rollback.php │ │ │ │ │ ├── different_reviews.php │ │ │ │ │ ├── different_reviews_rollback.php │ │ │ │ │ ├── disable_config.php │ │ │ │ │ ├── product_review_with_rating.php │ │ │ │ │ ├── product_review_with_rating_rollback.php │ │ │ │ │ ├── review_xss.php │ │ │ │ │ ├── reviews.php │ │ │ │ │ ├── set_position_and_add_store_to_all_ratings.php │ │ │ │ │ └── set_position_and_add_store_to_all_ratings_rollback.php │ │ │ │ ├── Rss │ │ │ │ └── Controller │ │ │ │ │ └── Feed │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Rule │ │ │ │ └── Model │ │ │ │ │ └── Condition │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ └── Sql │ │ │ │ │ └── BuilderTest.php │ │ │ │ ├── Sales │ │ │ │ ├── Api │ │ │ │ │ ├── CreditmemoCommentRepositoryInterfaceTest.php │ │ │ │ │ ├── CreditmemoItemRepositoryInterfaceTest.php │ │ │ │ │ ├── InvoiceCommentRepositoryInterfaceTest.php │ │ │ │ │ ├── InvoiceItemRepositoryInterfaceTest.php │ │ │ │ │ ├── OrderCustomerDelegateInterfaceTest.php │ │ │ │ │ ├── OrderStatusHistoryRepositoryInterfaceTest.php │ │ │ │ │ ├── ShipmentCommentRepositoryInterfaceTest.php │ │ │ │ │ ├── ShipmentItemRepositoryInterfaceTest.php │ │ │ │ │ └── ShipmentTrackRepositoryInterfaceTest.php │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ └── Column │ │ │ │ │ │ │ │ └── NameTest.php │ │ │ │ │ │ ├── Order │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ │ ├── AbstractAddressFormTest.php │ │ │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ │ └── Method │ │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ │ │ │ │ └── AddressTest.php │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ ├── Giftmessage │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ ├── HeaderTest.php │ │ │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ │ ├── Shipping │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ └── Sidebar │ │ │ │ │ │ │ │ │ └── CartTest.php │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ │ ├── TotalsTest.php │ │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ │ ├── AddressInfoTest.php │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ └── CouponTest.php │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ └── Order │ │ │ │ │ │ ├── CommentsTest.php │ │ │ │ │ │ ├── Creditmemo │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ ├── HistoryTest.php │ │ │ │ │ │ ├── Info │ │ │ │ │ │ └── ButtonsTest.php │ │ │ │ │ │ ├── InfoTest.php │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ ├── Item │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ └── DefaultRendererTest.php │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ ├── PrintOrder │ │ │ │ │ │ ├── CreditmemoTest.php │ │ │ │ │ │ ├── InvoiceTest.php │ │ │ │ │ │ ├── LogoTest.php │ │ │ │ │ │ └── ShipmentTest.php │ │ │ │ │ │ ├── PrintShipmentTest.php │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ ├── AddressSaveTest.php │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ ├── LoadBlockTest.php │ │ │ │ │ │ │ ├── ReorderTest.php │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ ├── CreateTest.php │ │ │ │ │ │ │ ├── Creditmemo │ │ │ │ │ │ │ ├── AbstractCreditmemoControllerTest.php │ │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ ├── CreditmemoTest.php │ │ │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ │ │ ├── ExportBase.php │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ ├── AbstractInvoiceControllerTest.php │ │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ ├── NewActionTest.php │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ ├── StartTest.php │ │ │ │ │ │ │ └── UpdateQtyTest.php │ │ │ │ │ │ │ ├── Shipment │ │ │ │ │ │ │ └── ExportTest.php │ │ │ │ │ │ │ └── Stub │ │ │ │ │ │ │ └── OrderCreateStub.php │ │ │ │ │ ├── Guest │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ ├── ReorderTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ └── Order │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ ├── Cron │ │ │ │ │ └── CleanExpiredQuotesTest.php │ │ │ │ ├── CustomerData │ │ │ │ │ └── LastOrderedItemsTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── AdminTest.php │ │ │ │ │ └── ReorderTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AbstractCollectorPositionsTest.php │ │ │ │ │ ├── AdminOrder │ │ │ │ │ │ └── CreateTest.php │ │ │ │ │ ├── Convert │ │ │ │ │ │ └── OrderTest.php │ │ │ │ │ ├── CronJob │ │ │ │ │ │ └── CleanExpiredOrdersTest.php │ │ │ │ │ ├── GridAsyncInsertTest.php │ │ │ │ │ ├── InvoiceEmailSenderHandlerTest.php │ │ │ │ │ ├── Order │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── RendererTest.php │ │ │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ ├── BackOrderTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── CreateTest.php │ │ │ │ │ │ ├── CreditmemoFactoryTest.php │ │ │ │ │ │ ├── Email │ │ │ │ │ │ │ └── Sender │ │ │ │ │ │ │ │ ├── CreditmemoSenderTest.php │ │ │ │ │ │ │ │ ├── InvoiceSenderTest.php │ │ │ │ │ │ │ │ ├── OrderSenderTest.php │ │ │ │ │ │ │ │ └── ShipmentSenderTest.php │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ ├── GetLogoFileTest.php │ │ │ │ │ │ │ └── Sender │ │ │ │ │ │ │ │ └── EmailSenderTest.php │ │ │ │ │ │ ├── InvoiceTest.php │ │ │ │ │ │ ├── ItemRepositoryTest.php │ │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ └── TransactionTest.php │ │ │ │ │ │ ├── Reorder │ │ │ │ │ │ │ └── UnavailableProductsProviderTest.php │ │ │ │ │ │ ├── Shipment │ │ │ │ │ │ │ └── Sender │ │ │ │ │ │ │ │ └── EmailSenderTest.php │ │ │ │ │ │ ├── ShipmentDocumentFactoryTest.php │ │ │ │ │ │ ├── ShipmentTest.php │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ ├── OrderIncrementIdCheckerTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ ├── Order │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ │ └── EncryptionUpdateTest.php │ │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ ├── Bestsellers │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Invoiced │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ │ ├── InvoicedTest.php │ │ │ │ │ │ │ │ │ └── OrderTest.php │ │ │ │ │ │ │ ├── Refunded │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ │ │ └── RefundedTest.php │ │ │ │ │ │ │ └── Shipping │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ │ └── ShipmentTest.php │ │ │ │ │ │ └── Sale │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── Service │ │ │ │ │ │ ├── InvoiceServiceTest.php │ │ │ │ │ │ └── PaymentFailuresServiceTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── Backend │ │ │ │ │ │ └── CustomerQuoteTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── Order │ │ │ │ │ │ └── OrderGridCollectionFilterTest.php │ │ │ │ ├── ViewModel │ │ │ │ │ └── Customer │ │ │ │ │ │ └── Address │ │ │ │ │ │ └── AddressAttributeFilterTest.php │ │ │ │ ├── _files │ │ │ │ │ ├── address.php │ │ │ │ │ ├── address_data.php │ │ │ │ │ ├── address_list.php │ │ │ │ │ ├── address_list_rollback.php │ │ │ │ │ ├── assign_status_to_state.php │ │ │ │ │ ├── creditmemo_comments_for_search.php │ │ │ │ │ ├── creditmemo_for_get.php │ │ │ │ │ ├── creditmemo_for_get_rollback.php │ │ │ │ │ ├── creditmemo_items_for_search.php │ │ │ │ │ ├── creditmemo_list.php │ │ │ │ │ ├── creditmemo_list_rollback.php │ │ │ │ │ ├── creditmemo_with_grouped_product.php │ │ │ │ │ ├── creditmemo_with_grouped_product_rollback.php │ │ │ │ │ ├── creditmemo_with_list.php │ │ │ │ │ ├── creditmemo_with_list_rollback.php │ │ │ │ │ ├── customer_creditmemo_with_two_items.php │ │ │ │ │ ├── customer_creditmemo_with_two_items_rollback.php │ │ │ │ │ ├── customer_invoice_with_two_products_and_custom_options.php │ │ │ │ │ ├── customer_invoice_with_two_products_and_custom_options_rollback.php │ │ │ │ │ ├── customer_multiple_invoices_with_two_products_and_custom_options.php │ │ │ │ │ ├── customer_multiple_invoices_with_two_products_and_custom_options_rollback.php │ │ │ │ │ ├── customer_order_item_with_product_and_custom_options.php │ │ │ │ │ ├── customer_order_item_with_product_and_custom_options_rollback.php │ │ │ │ │ ├── customer_order_with_simple_product.php │ │ │ │ │ ├── customer_order_with_simple_product_rollback.php │ │ │ │ │ ├── customer_order_with_taxable_product.php │ │ │ │ │ ├── customer_order_with_taxable_product_rollback.php │ │ │ │ │ ├── customer_order_with_two_items.php │ │ │ │ │ ├── customer_order_with_two_items_rollback.php │ │ │ │ │ ├── customers_with_invoices.php │ │ │ │ │ ├── customers_with_invoices_rollback.php │ │ │ │ │ ├── default_rollback.php │ │ │ │ │ ├── guest_order_with_product_and_custom_options.php │ │ │ │ │ ├── guest_order_with_product_and_custom_options_rollback.php │ │ │ │ │ ├── guest_quote_with_addresses.php │ │ │ │ │ ├── guest_quote_with_addresses_rollback.php │ │ │ │ │ ├── invoice.php │ │ │ │ │ ├── invoice_comments_for_search.php │ │ │ │ │ ├── invoice_fixture_store_order.php │ │ │ │ │ ├── invoice_items_for_search.php │ │ │ │ │ ├── invoice_list.php │ │ │ │ │ ├── invoice_list_different_stores.php │ │ │ │ │ ├── invoice_list_different_stores_rollback.php │ │ │ │ │ ├── invoice_list_rollback.php │ │ │ │ │ ├── invoice_payflowpro.php │ │ │ │ │ ├── invoice_rollback.php │ │ │ │ │ ├── invoice_with_bundle.php │ │ │ │ │ ├── invoice_with_bundle_rollback.php │ │ │ │ │ ├── invoice_with_send_email_flag.php │ │ │ │ │ ├── invoice_with_send_email_flag_rollback.php │ │ │ │ │ ├── invoices_for_items.php │ │ │ │ │ ├── invoices_for_items_rollback.php │ │ │ │ │ ├── order.php │ │ │ │ │ ├── order_address_with_multi_attribute.php │ │ │ │ │ ├── order_address_with_multi_attribute_rollback.php │ │ │ │ │ ├── order_alphanumeric_id.php │ │ │ │ │ ├── order_by_guest_with_simple_product.php │ │ │ │ │ ├── order_by_guest_with_simple_product_rollback.php │ │ │ │ │ ├── order_canceled.php │ │ │ │ │ ├── order_canceled_rollback.php │ │ │ │ │ ├── order_closed.php │ │ │ │ │ ├── order_closed_rollback.php │ │ │ │ │ ├── order_complete.php │ │ │ │ │ ├── order_complete_rollback.php │ │ │ │ │ ├── order_configurable_product.php │ │ │ │ │ ├── order_configurable_product_rollback.php │ │ │ │ │ ├── order_different_addresses.php │ │ │ │ │ ├── order_fixture_store.php │ │ │ │ │ ├── order_fixture_store_rollback.php │ │ │ │ │ ├── order_from_past.php │ │ │ │ │ ├── order_info.php │ │ │ │ │ ├── order_item_list.php │ │ │ │ │ ├── order_item_with_configurable_for_reorder.php │ │ │ │ │ ├── order_item_with_configurable_for_reorder_rollback.php │ │ │ │ │ ├── order_list.php │ │ │ │ │ ├── order_list_rollback.php │ │ │ │ │ ├── order_list_with_invoice.php │ │ │ │ │ ├── order_list_with_invoice_rollback.php │ │ │ │ │ ├── order_list_with_tax.php │ │ │ │ │ ├── order_list_with_tax_rollback.php │ │ │ │ │ ├── order_new.php │ │ │ │ │ ├── order_new_rollback.php │ │ │ │ │ ├── order_on_second_website.php │ │ │ │ │ ├── order_on_second_website_rollback.php │ │ │ │ │ ├── order_paid_with_payflowpro.php │ │ │ │ │ ├── order_payment_list.php │ │ │ │ │ ├── order_pending_payment.php │ │ │ │ │ ├── order_rollback.php │ │ │ │ │ ├── order_shipping.php │ │ │ │ │ ├── order_shipping_address_different_to_billing.php │ │ │ │ │ ├── order_shipping_address_same_as_billing.php │ │ │ │ │ ├── order_state_hold.php │ │ │ │ │ ├── order_state_hold_rollback.php │ │ │ │ │ ├── order_status.php │ │ │ │ │ ├── order_status_assign_state_complete.php │ │ │ │ │ ├── order_status_assign_state_complete_rollback.php │ │ │ │ │ ├── order_status_history_for_search.php │ │ │ │ │ ├── order_status_with_different_labels.php │ │ │ │ │ ├── order_status_with_different_labels_rollback.php │ │ │ │ │ ├── order_with_1_qty_product.php │ │ │ │ │ ├── order_with_1_qty_product_rollback.php │ │ │ │ │ ├── order_with_bundle.php │ │ │ │ │ ├── order_with_bundle_and_invoiced.php │ │ │ │ │ ├── order_with_bundle_and_invoiced_rollback.php │ │ │ │ │ ├── order_with_bundle_dynamic_price_no.php │ │ │ │ │ ├── order_with_bundle_dynamic_price_no_rollback.php │ │ │ │ │ ├── order_with_bundle_rollback.php │ │ │ │ │ ├── order_with_customer.php │ │ │ │ │ ├── order_with_customer_and_multiple_order_items.php │ │ │ │ │ ├── order_with_customer_on_second_website.php │ │ │ │ │ ├── order_with_customer_on_second_website_rollback.php │ │ │ │ │ ├── order_with_customer_rollback.php │ │ │ │ │ ├── order_with_date_time_option_product.php │ │ │ │ │ ├── order_with_date_time_option_product_rollback.php │ │ │ │ │ ├── order_with_different_types_of_product.php │ │ │ │ │ ├── order_with_different_types_of_product_rollback.php │ │ │ │ │ ├── order_with_discount.php │ │ │ │ │ ├── order_with_discount_rollback.php │ │ │ │ │ ├── order_with_dummy_item_and_invoiced.php │ │ │ │ │ ├── order_with_free_shipping_by_coupon.php │ │ │ │ │ ├── order_with_free_shipping_by_coupon_and_invoice.php │ │ │ │ │ ├── order_with_free_shipping_by_coupon_rollback.php │ │ │ │ │ ├── order_with_grouped_product.php │ │ │ │ │ ├── order_with_grouped_product_rollback.php │ │ │ │ │ ├── order_with_invoice_and_custom_status.php │ │ │ │ │ ├── order_with_invoice_and_custom_status_rollback.php │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo.php │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_on_second_website.php │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_on_second_website_rollback.php │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_rollback.php │ │ │ │ │ ├── order_with_js_date_option_product.php │ │ │ │ │ ├── order_with_js_date_option_product_rollback.php │ │ │ │ │ ├── order_with_multiple_items.php │ │ │ │ │ ├── order_with_product_out_of_stock.php │ │ │ │ │ ├── order_with_product_out_of_stock_rollback.php │ │ │ │ │ ├── order_with_shipping_and_invoice.php │ │ │ │ │ ├── order_with_shipping_and_invoice_rollback.php │ │ │ │ │ ├── order_with_simple_product.php │ │ │ │ │ ├── order_with_simple_product_rollback.php │ │ │ │ │ ├── order_with_tax.php │ │ │ │ │ ├── order_with_tax_rollback.php │ │ │ │ │ ├── order_with_two_configurable_variations.php │ │ │ │ │ ├── order_with_two_configurable_variations_rollback.php │ │ │ │ │ ├── order_with_two_order_items_with_simple_product.php │ │ │ │ │ ├── order_with_two_order_items_with_simple_product_rollback.php │ │ │ │ │ ├── order_with_two_simple_products.php │ │ │ │ │ ├── order_with_two_simple_products_qty_10.php │ │ │ │ │ ├── order_with_two_simple_products_qty_10_rollback.php │ │ │ │ │ ├── order_with_two_simple_products_rollback.php │ │ │ │ │ ├── order_with_zero_qty_product.php │ │ │ │ │ ├── order_with_zero_qty_product_rollback.php │ │ │ │ │ ├── orders_with_customer.php │ │ │ │ │ ├── orders_with_customer_rollback.php │ │ │ │ │ ├── payment_enc_cc.php │ │ │ │ │ ├── quote.php │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ ├── quote_with_backorder.php │ │ │ │ │ ├── quote_with_backorder_rollback.php │ │ │ │ │ ├── quote_with_bundle.php │ │ │ │ │ ├── quote_with_bundle_rollback.php │ │ │ │ │ ├── quote_with_custom_price.php │ │ │ │ │ ├── quote_with_custom_price_rollback.php │ │ │ │ │ ├── quote_with_customer.php │ │ │ │ │ ├── quote_with_customer_rollback.php │ │ │ │ │ ├── quote_with_multiple_products.php │ │ │ │ │ ├── quote_with_multiple_products_rollback.php │ │ │ │ │ ├── quote_with_new_customer.php │ │ │ │ │ ├── quote_with_purchase_order.php │ │ │ │ │ ├── quote_with_purchase_order_rollback.php │ │ │ │ │ ├── quote_with_two_products_and_customer.php │ │ │ │ │ ├── quote_with_two_products_and_customer_and_custom_price.php │ │ │ │ │ ├── quote_with_two_products_and_customer_and_custom_price_rollback.php │ │ │ │ │ ├── quote_with_two_products_and_customer_rollback.php │ │ │ │ │ ├── quotes.php │ │ │ │ │ ├── quotes_big_amount.php │ │ │ │ │ ├── quotes_big_amount_rollback.php │ │ │ │ │ ├── quotes_rollback.php │ │ │ │ │ ├── refunds_for_items.php │ │ │ │ │ ├── refunds_for_items_rollback.php │ │ │ │ │ ├── report_bestsellers.php │ │ │ │ │ ├── report_invoiced.php │ │ │ │ │ ├── report_refunded.php │ │ │ │ │ ├── report_shipping.php │ │ │ │ │ ├── shipment.php │ │ │ │ │ ├── shipment_comments_for_search.php │ │ │ │ │ ├── shipment_for_order_with_customer.php │ │ │ │ │ ├── shipment_for_order_with_customer_rollback.php │ │ │ │ │ ├── shipment_for_two_items.php │ │ │ │ │ ├── shipment_for_two_items_rollback.php │ │ │ │ │ ├── shipment_items_for_search.php │ │ │ │ │ ├── shipment_list.php │ │ │ │ │ ├── shipment_list_rollback.php │ │ │ │ │ ├── shipment_rollback.php │ │ │ │ │ ├── shipment_tracks_for_search.php │ │ │ │ │ ├── transactions.php │ │ │ │ │ ├── transactions_detailed.php │ │ │ │ │ ├── transactions_list.php │ │ │ │ │ ├── transactions_list_rollback.php │ │ │ │ │ ├── two_orders_for_one_of_two_customers.php │ │ │ │ │ ├── two_orders_for_two_diff_customers.php │ │ │ │ │ ├── two_orders_for_two_diff_customers_rollback.php │ │ │ │ │ └── two_orders_with_order_items.php │ │ │ │ └── etc │ │ │ │ │ └── extension_attributes.xml │ │ │ │ ├── SalesRule │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Promo │ │ │ │ │ │ └── Quote │ │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Tab │ │ │ │ │ │ ├── Coupons │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── LabelsTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Promo │ │ │ │ │ │ └── Quote │ │ │ │ │ │ ├── ExportCoupons │ │ │ │ │ │ ├── ExportCouponsCsvTest.php │ │ │ │ │ │ └── ExportCouponsXmlTest.php │ │ │ │ │ │ ├── NewActionHtmlTest.php │ │ │ │ │ │ └── NewConditionHtmlTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Coupon │ │ │ │ │ │ ├── CodeLimitManagerTest.php │ │ │ │ │ │ └── QuoteRepositoryTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── AssignCouponDataAfterOrderCustomerAssignTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── Total │ │ │ │ │ │ │ │ └── ShippingTest.php │ │ │ │ │ │ └── DiscountTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Coupon │ │ │ │ │ │ │ └── UsageTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ │ └── CreatedatTest.php │ │ │ │ │ │ │ └── RuleTest.php │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── RuleTest.php │ │ │ │ │ └── Rule │ │ │ │ │ │ ├── Action │ │ │ │ │ │ └── Discount │ │ │ │ │ │ │ └── CartFixedTest.php │ │ │ │ │ │ └── Condition │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ ├── ConditionHelper.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── CouponUsagesTest.php │ │ │ │ └── _files │ │ │ │ │ ├── buy_3_get_1_free.php │ │ │ │ │ ├── buy_3_get_1_free_rollback.php │ │ │ │ │ ├── cart_fixed_10_discount.php │ │ │ │ │ ├── cart_fixed_10_discount_rollback.php │ │ │ │ │ ├── cart_rule_100_percent_off.php │ │ │ │ │ ├── cart_rule_100_percent_off_rollback.php │ │ │ │ │ ├── cart_rule_100_percent_off_with_coupon.php │ │ │ │ │ ├── cart_rule_100_percent_off_with_coupon_rollback.php │ │ │ │ │ ├── cart_rule_10_percent_off.php │ │ │ │ │ ├── cart_rule_10_percent_off_qty_more_than_2_items.php │ │ │ │ │ ├── cart_rule_10_percent_off_qty_more_than_2_items_rollback.php │ │ │ │ │ ├── cart_rule_10_percent_off_rollback.php │ │ │ │ │ ├── cart_rule_10_percent_off_with_discount_on_shipping.php │ │ │ │ │ ├── cart_rule_10_percent_off_with_discount_on_shipping_rollback.php │ │ │ │ │ ├── cart_rule_40_percent_off.php │ │ │ │ │ ├── cart_rule_40_percent_off_rollback.php │ │ │ │ │ ├── cart_rule_50_percent_off.php │ │ │ │ │ ├── cart_rule_50_percent_off_no_condition.php │ │ │ │ │ ├── cart_rule_50_percent_off_no_condition_rollback.php │ │ │ │ │ ├── cart_rule_50_percent_off_rollback.php │ │ │ │ │ ├── cart_rule_free_shipping.php │ │ │ │ │ ├── cart_rule_free_shipping_by_cart.php │ │ │ │ │ ├── cart_rule_free_shipping_by_category.php │ │ │ │ │ ├── cart_rule_free_shipping_by_category_rollback.php │ │ │ │ │ ├── cart_rule_free_shipping_rollback.php │ │ │ │ │ ├── cart_rule_product_in_category.php │ │ │ │ │ ├── cart_rule_product_in_category_rollback.php │ │ │ │ │ ├── cart_rule_product_sku.php │ │ │ │ │ ├── cart_rule_product_sku_rollback.php │ │ │ │ │ ├── cart_rule_with_coupon_5_off_no_condition.php │ │ │ │ │ ├── cart_rule_with_coupon_5_off_no_condition_rollback.php │ │ │ │ │ ├── cart_rule_with_coupon_list.php │ │ │ │ │ ├── cart_rule_with_coupon_list_rollback.php │ │ │ │ │ ├── coupon_cart_fixed_discount.php │ │ │ │ │ ├── coupon_cart_fixed_discount_rollback.php │ │ │ │ │ ├── coupon_cart_fixed_subtotal_with_discount.php │ │ │ │ │ ├── coupon_cart_fixed_subtotal_with_discount_rollback.php │ │ │ │ │ ├── coupon_code_with_wildcard.php │ │ │ │ │ ├── coupon_code_with_wildcard_rollback.php │ │ │ │ │ ├── coupons.php │ │ │ │ │ ├── coupons_advanced.php │ │ │ │ │ ├── coupons_limited.php │ │ │ │ │ ├── coupons_limited_order.php │ │ │ │ │ ├── coupons_limited_order_rollback.php │ │ │ │ │ ├── coupons_limited_rollback.php │ │ │ │ │ ├── multi_websites_rules.php │ │ │ │ │ ├── multi_websites_rules_rollback.php │ │ │ │ │ ├── order_with_coupon.php │ │ │ │ │ ├── report_coupons.php │ │ │ │ │ ├── rule_custom_product_attribute.php │ │ │ │ │ ├── rule_free_shipping_by_product_weight.php │ │ │ │ │ ├── rule_specific_date.php │ │ │ │ │ ├── rules.php │ │ │ │ │ ├── rules_advanced.php │ │ │ │ │ ├── rules_autogeneration.php │ │ │ │ │ ├── rules_autogeneration_rollback.php │ │ │ │ │ ├── rules_categories.php │ │ │ │ │ ├── rules_categories_rollback.php │ │ │ │ │ ├── rules_category.php │ │ │ │ │ ├── rules_category_rollback.php │ │ │ │ │ ├── rules_group_all_categories.php │ │ │ │ │ ├── rules_group_all_categories_price_attr_set.php │ │ │ │ │ ├── rules_group_any_categories.php │ │ │ │ │ ├── rules_group_any_categories_price_address.php │ │ │ │ │ ├── rules_group_any_categories_price_attr_set.php │ │ │ │ │ ├── rules_group_any_categories_price_attr_set_any.php │ │ │ │ │ ├── rules_group_any_categories_rollback.php │ │ │ │ │ ├── rules_group_categories_price_sku_attr_set_any.php │ │ │ │ │ ├── rules_group_not_categories_sku_attr.php │ │ │ │ │ ├── rules_parent_category.php │ │ │ │ │ ├── rules_parent_category_rollback.php │ │ │ │ │ ├── rules_payment_method.php │ │ │ │ │ ├── rules_rollback.php │ │ │ │ │ ├── rules_sku_exclude.php │ │ │ │ │ └── rules_sku_exclude_rollback.php │ │ │ │ ├── SampleData │ │ │ │ ├── Model │ │ │ │ │ └── DependencyTest.php │ │ │ │ └── _files │ │ │ │ │ └── Modules │ │ │ │ │ ├── FirstModule │ │ │ │ │ └── composer.json │ │ │ │ │ ├── SecondModule │ │ │ │ │ └── composer.json │ │ │ │ │ └── ThirdModule │ │ │ │ │ └── composer.json │ │ │ │ ├── Search │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Synonyms │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ └── EngineTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── SynonymGroupTest.php │ │ │ │ │ ├── SearchEngine │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── SynonymAnalyzerTest.php │ │ │ │ │ ├── SynonymGroupRepositoryTest.php │ │ │ │ │ └── SynonymReaderTest.php │ │ │ │ └── _files │ │ │ │ │ ├── search_engine.xml │ │ │ │ │ ├── synonym_group.php │ │ │ │ │ ├── synonym_group_rollback.php │ │ │ │ │ ├── synonym_reader.php │ │ │ │ │ └── synonym_reader_rollback.php │ │ │ │ ├── Security │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Session │ │ │ │ │ │ └── LogoutAllTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AdminSessionsManagerTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ ├── AccountManagementTest.php │ │ │ │ │ │ └── AuthSessionTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── AdminSessionInfo │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── AdminSessionInfoTest.php │ │ │ │ │ │ ├── PasswordResetRequestEvent │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── PasswordResetRequestEventTest.php │ │ │ │ │ │ ├── UserExpiration │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── UserExpirationTest.php │ │ │ │ │ ├── SecurityManagerTest.php │ │ │ │ │ ├── UserExpiration │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ └── UserExpirationManagerTest.php │ │ │ │ ├── Observer │ │ │ │ │ ├── AdminUserAuthenticateBeforeTest.php │ │ │ │ │ └── AfterAdminUserSaveTest.php │ │ │ │ └── _files │ │ │ │ │ ├── adminsession.php │ │ │ │ │ ├── customer_reset_password.php │ │ │ │ │ ├── customer_reset_password_rollback.php │ │ │ │ │ ├── expired_users.php │ │ │ │ │ ├── expired_users_rollback.php │ │ │ │ │ └── password_reset_request_events.php │ │ │ │ ├── SendFriend │ │ │ │ ├── Block │ │ │ │ │ ├── ProductViewTest.php │ │ │ │ │ └── SendTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Product │ │ │ │ │ │ └── CustomerSendmailTest.php │ │ │ │ │ ├── SendTest.php │ │ │ │ │ └── SendmailTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── sendfriend_configuration.php │ │ │ │ │ └── sendfriend_configuration_rollback.php │ │ │ │ ├── Model │ │ │ │ │ └── SendFriendTest.php │ │ │ │ └── _files │ │ │ │ │ ├── sendfriend_log_record_half_hour_before.php │ │ │ │ │ └── sendfriend_log_record_half_hour_before_rollback.php │ │ │ │ ├── Setup │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ ├── DependenciesShowFrameworkCommandTest.php │ │ │ │ │ │ ├── DependenciesShowModulesCircularCommandTest.php │ │ │ │ │ │ ├── DependenciesShowModulesCommandTest.php │ │ │ │ │ │ ├── DeployStaticContentCommandTest.php │ │ │ │ │ │ ├── GenerateFixturesCommandTest.php │ │ │ │ │ │ ├── I18nCollectPhrasesCommandTest.php │ │ │ │ │ │ ├── I18nPackCommandTest.php │ │ │ │ │ │ ├── PriceIndexerDimensionsModeSetCommandTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── dump_config.php │ │ │ │ │ │ ├── edition │ │ │ │ │ │ ├── expectedPhrases.csv │ │ │ │ │ │ ├── i18n.csv │ │ │ │ │ │ ├── min_profile.xml │ │ │ │ │ │ ├── output │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── phrases │ │ │ │ │ │ ├── TestPhrases.php │ │ │ │ │ │ ├── test_di.xml │ │ │ │ │ │ └── test_mail_template.html │ │ │ │ │ │ └── root │ │ │ │ │ │ ├── app │ │ │ │ │ │ └── code │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── D │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── internal │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Framework │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Unit │ │ │ │ │ │ └── View │ │ │ │ │ │ └── Element │ │ │ │ │ │ └── UiComponentFactoryTest.php │ │ │ │ ├── Declaration │ │ │ │ │ ├── WhitelistDeclarationTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── ignore_whitelisting │ │ │ │ │ │ └── ce.json │ │ │ │ ├── Fixtures │ │ │ │ │ ├── FixtureModelTest.php │ │ │ │ │ ├── FixturesAsserts │ │ │ │ │ │ ├── BundleProductsAssert.php │ │ │ │ │ │ ├── ConfigurableProductsAssert.php │ │ │ │ │ │ ├── ImagesAssert.php │ │ │ │ │ │ ├── ProductAssert.php │ │ │ │ │ │ └── SimpleProductsAssert.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── attributeSets.xml │ │ │ │ │ │ ├── small.xml │ │ │ │ │ │ └── tax_rates.csv │ │ │ │ ├── Model │ │ │ │ │ ├── ConfigOptionsListCollectorTest.php │ │ │ │ │ ├── FixtureGenerator │ │ │ │ │ │ └── ProductGeneratorTest.php │ │ │ │ │ ├── ObjectManagerProviderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── testSkeleton │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ └── composer.lock │ │ │ │ └── Module │ │ │ │ │ ├── DataSetupTest.php │ │ │ │ │ ├── Dependency │ │ │ │ │ ├── CircularTest.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ └── JsonTest.php │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── XmlTest.php │ │ │ │ │ ├── Report │ │ │ │ │ │ ├── CircularTest.php │ │ │ │ │ │ ├── DependencyTest.php │ │ │ │ │ │ └── FrameworkTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── code │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── FirstModule │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ │ └── WithoutDependencies.php │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ ├── composer1.json │ │ │ │ │ │ ├── composer2.json │ │ │ │ │ │ ├── composer3.json │ │ │ │ │ │ ├── composer4.json │ │ │ │ │ │ ├── composer5.json │ │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── circular-dependencies.csv │ │ │ │ │ │ ├── dependencies.csv │ │ │ │ │ │ ├── framework-dependencies.csv │ │ │ │ │ │ ├── without-circular-dependencies.csv │ │ │ │ │ │ ├── without-dependencies.csv │ │ │ │ │ │ └── without-framework-dependencies.csv │ │ │ │ │ │ ├── module1.xml │ │ │ │ │ │ └── module2.xml │ │ │ │ │ └── I18n │ │ │ │ │ ├── Dictionary │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── with_context.csv │ │ │ │ │ │ └── without_context.csv │ │ │ │ │ │ └── source │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ ├── FirstModule │ │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ └── Model.php │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ │ │ └── SecondModule │ │ │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ │ └── Model.php │ │ │ │ │ │ └── design │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── backend │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── mage │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ │ └── varien │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ └── not_magento_dir │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ └── template.phtml │ │ │ │ │ ├── Pack │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ │ ├── FirstModule │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ │ │ └── SecondModule │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ └── source.csv │ │ │ │ │ └── Parser │ │ │ │ │ └── Adapter │ │ │ │ │ ├── JsTest.php │ │ │ │ │ ├── Php │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ ├── PhraseCollectorTest.php │ │ │ │ │ │ ├── Translate │ │ │ │ │ │ └── MethodCollectorTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── methodsCode.php.txt │ │ │ │ │ │ └── objectsCode.php.txt │ │ │ │ │ ├── XmlTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── jsPhrasesForTest.js │ │ │ │ │ └── xmlPhrasesForTest.xml │ │ │ │ ├── Shipping │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ └── AddToPackageTest.php │ │ │ │ │ └── ItemsTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Order │ │ │ │ │ │ └── Shipment │ │ │ │ │ │ ├── AbstractShipmentControllerTest.php │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ ├── Save │ │ │ │ │ │ └── CreateShipmentForOrderTest.php │ │ │ │ │ │ └── SaveTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── CollectRatesAbstract.php │ │ │ │ │ └── ShippingTest.php │ │ │ │ └── _files │ │ │ │ │ ├── shipping_with_carrier_data.php │ │ │ │ │ ├── shipping_with_carrier_data_different_currency_code.php │ │ │ │ │ ├── shipping_with_carrier_data_different_currency_code_rollback.php │ │ │ │ │ ├── shipping_with_carrier_data_rollback.php │ │ │ │ │ ├── track.php │ │ │ │ │ └── track_rollback.php │ │ │ │ ├── Sitemap │ │ │ │ ├── Block │ │ │ │ │ └── RobotsTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── ItemProvider │ │ │ │ │ │ ├── CategoryConfigReaderTest.php │ │ │ │ │ │ ├── CmsPageConfigReaderTest.php │ │ │ │ │ │ └── ProductConfigReaderTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ └── Cms │ │ │ │ │ │ │ └── PageTest.php │ │ │ │ │ ├── SitemapConfigReaderTest.php │ │ │ │ │ └── SitemapTest.php │ │ │ │ └── _files │ │ │ │ │ ├── magento_image_sitemap.png │ │ │ │ │ ├── second_image.png │ │ │ │ │ ├── sitemap_products.php │ │ │ │ │ └── sitemap_products_rollback.php │ │ │ │ ├── Store │ │ │ │ ├── App │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ └── InitialConfigSourceTest.php │ │ │ │ │ ├── FrontController │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ └── RequestPreprocessorTest.php │ │ │ │ │ └── Request │ │ │ │ │ │ └── PathInfoProcessorTest.php │ │ │ │ ├── Block │ │ │ │ │ └── SwitcherTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Store │ │ │ │ │ │ ├── RedirectTest.php │ │ │ │ │ │ └── SwitchActionTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── App │ │ │ │ │ │ └── EmulationTest.php │ │ │ │ │ ├── DataSource.php │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Store │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ └── WebsiteTest.php │ │ │ │ │ ├── StoreCookieManagerTest.php │ │ │ │ │ ├── StoreManagerTest.php │ │ │ │ │ ├── StoreResolverTest.php │ │ │ │ │ ├── StoreSwitcherTest.php │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ ├── Validation │ │ │ │ │ │ └── StoreValidatorTest.php │ │ │ │ │ └── WebsiteTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── Component │ │ │ │ │ │ └── Listing │ │ │ │ │ │ └── Column │ │ │ │ │ │ └── Store │ │ │ │ │ │ └── OptionsTest.php │ │ │ │ └── _files │ │ │ │ │ ├── assign_products_to_categories_and_websites.php │ │ │ │ │ ├── core_fixturestore.php │ │ │ │ │ ├── core_fixturestore_rollback.php │ │ │ │ │ ├── core_second_third_fixturestore.php │ │ │ │ │ ├── core_second_third_fixturestore_rollback.php │ │ │ │ │ ├── dump_config.php │ │ │ │ │ ├── fixture_store_with_catalogsearch_index.php │ │ │ │ │ ├── fixture_store_with_catalogsearch_index_rollback.php │ │ │ │ │ ├── inactive_store.php │ │ │ │ │ ├── inactive_store_rollback.php │ │ │ │ │ ├── multiple_currencies.php │ │ │ │ │ ├── multiple_currencies_rollback.php │ │ │ │ │ ├── multiple_websites_with_store_groups_stores.php │ │ │ │ │ ├── multiple_websites_with_store_groups_stores_rollback.php │ │ │ │ │ ├── scope.config.fixture.php │ │ │ │ │ ├── second_store.php │ │ │ │ │ ├── second_store_group_with_second_website.php │ │ │ │ │ ├── second_store_group_with_second_website_rollback.php │ │ │ │ │ ├── second_store_rollback.php │ │ │ │ │ ├── second_store_with_second_currency.php │ │ │ │ │ ├── second_store_with_second_currency_rollback.php │ │ │ │ │ ├── second_store_with_second_identity.php │ │ │ │ │ ├── second_store_with_second_identity_rollback.php │ │ │ │ │ ├── second_website_with_base_second_currency.php │ │ │ │ │ ├── second_website_with_base_second_currency_rollback.php │ │ │ │ │ ├── second_website_with_four_stores_divided_in_groups.php │ │ │ │ │ ├── second_website_with_four_stores_divided_in_groups_rollback.php │ │ │ │ │ ├── second_website_with_second_currency.php │ │ │ │ │ ├── second_website_with_second_currency_rollback.php │ │ │ │ │ ├── second_website_with_store_group_and_store.php │ │ │ │ │ ├── second_website_with_store_group_and_store_rollback.php │ │ │ │ │ ├── second_website_with_two_stores.php │ │ │ │ │ ├── second_website_with_two_stores_rollback.php │ │ │ │ │ ├── store.php │ │ │ │ │ ├── store_rollback.php │ │ │ │ │ ├── store_with_long_name.php │ │ │ │ │ ├── store_with_long_name_rollback.php │ │ │ │ │ ├── store_with_second_root_category.php │ │ │ │ │ ├── store_with_second_root_category_rollback.php │ │ │ │ │ ├── website.php │ │ │ │ │ ├── website_rollback.php │ │ │ │ │ ├── websites_different_countries.php │ │ │ │ │ └── websites_different_countries_rollback.php │ │ │ │ ├── SwaggerWebapi │ │ │ │ └── Block │ │ │ │ │ └── Swagger │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Swatches │ │ │ │ ├── Block │ │ │ │ │ └── Product │ │ │ │ │ │ ├── ListProductTest.php │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ ├── Configurable │ │ │ │ │ │ │ ├── Listing │ │ │ │ │ │ │ │ ├── CategoryPageViewTest.php │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ └── ProductPageViewTest.php │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ └── View │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ ├── TextSwatchAttributeTest.php │ │ │ │ │ │ └── VisualSwatchAttributeTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Iframe │ │ │ │ │ │ └── ShowTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ └── SwatchesAttributesControllerTest.php │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ ├── TextSwatchTest.php │ │ │ │ │ │ │ │ └── VisualSwatchTest.php │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ ├── AbstractUpdateSwatchAttributeTest.php │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ ├── TextSwatchTest.php │ │ │ │ │ │ │ └── VisualSwatchTest.php │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AttributeCreateTest.php │ │ │ │ │ ├── AttributeTextSwatchTest.php │ │ │ │ │ ├── AttributeVisualSwatchTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── EavAttributeTest.php │ │ │ │ │ ├── SwatchAttributeCodesTest.php │ │ │ │ │ └── SwatchAttributeOptionAddTest.php │ │ │ │ ├── Observer │ │ │ │ │ └── AddSwatchAttributeTypeObserverTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ └── Eav │ │ │ │ │ │ ├── TextSwatchAttributeTest.php │ │ │ │ │ │ └── VisualSwatchAttributeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── configurable_product_text_swatch_attribute.php │ │ │ │ │ ├── configurable_product_text_swatch_attribute_rollback.php │ │ │ │ │ ├── configurable_product_two_attributes.php │ │ │ │ │ ├── configurable_product_two_attributes_rollback.php │ │ │ │ │ ├── configurable_product_visual_swatch_attribute.php │ │ │ │ │ ├── configurable_product_visual_swatch_attribute_rollback.php │ │ │ │ │ ├── configurable_product_with_images.php │ │ │ │ │ ├── configurable_product_with_images_rollback.php │ │ │ │ │ ├── configurable_product_with_visual_swatch_attribute.php │ │ │ │ │ ├── configurable_product_with_visual_swatch_attribute_rollback.php │ │ │ │ │ ├── product_swatch_attribute.php │ │ │ │ │ ├── product_swatch_attribute_rollback.php │ │ │ │ │ ├── product_text_swatch_attribute.php │ │ │ │ │ ├── product_text_swatch_attribute_rollback.php │ │ │ │ │ ├── product_visual_swatch_attribute.php │ │ │ │ │ ├── product_visual_swatch_attribute_rollback.php │ │ │ │ │ ├── products_with_layered_navigation_swatch.php │ │ │ │ │ ├── products_with_layered_navigation_swatch_rollback.php │ │ │ │ │ ├── swatch_attribute.php │ │ │ │ │ ├── swatch_attribute_rollback.php │ │ │ │ │ ├── text_swatch_attribute.php │ │ │ │ │ ├── text_swatch_attribute_rollback.php │ │ │ │ │ ├── visual_swatch_attribute_with_different_options_type.php │ │ │ │ │ ├── visual_swatch_attribute_with_different_options_type_rollback.php │ │ │ │ │ ├── visual_swatch_attribute_with_enabled_product_image_for_swatch.php │ │ │ │ │ └── visual_swatch_attribute_with_enabled_product_image_for_swatch_rollback.php │ │ │ │ ├── SwatchesLayeredNavigation │ │ │ │ └── Block │ │ │ │ │ └── Navigation │ │ │ │ │ ├── Category │ │ │ │ │ ├── SwatchTextFilterTest.php │ │ │ │ │ └── SwatchVisualFilterTest.php │ │ │ │ │ └── Search │ │ │ │ │ ├── SwatchTextFilterTest.php │ │ │ │ │ └── SwatchVisualFilterTest.php │ │ │ │ ├── Tax │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Rate │ │ │ │ │ │ └── TitleTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── RateTest.php │ │ │ │ │ │ ├── RuleTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ └── TaxTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Calculation │ │ │ │ │ │ └── RateRepositoryTest.php │ │ │ │ │ ├── CalculationTest.php │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── Rate │ │ │ │ │ │ ├── ProviderTest.php │ │ │ │ │ │ └── SourceTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Calculation │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── CalculationTest.php │ │ │ │ │ │ └── Report │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ ├── Sales │ │ │ │ │ │ └── Total │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ ├── SetupUtil.php │ │ │ │ │ │ │ ├── SubtotalTest.php │ │ │ │ │ │ │ └── TaxTest.php │ │ │ │ │ ├── TaxCalculationTest.php │ │ │ │ │ ├── TaxClass │ │ │ │ │ │ ├── ManagementTest.php │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── CustomerTest.php │ │ │ │ │ ├── TaxRateCollectionTest.php │ │ │ │ │ ├── TaxRateManagementTest.php │ │ │ │ │ ├── TaxRuleCollectionTest.php │ │ │ │ │ ├── TaxRuleFixtureFactory.php │ │ │ │ │ └── TaxRuleRepositoryTest.php │ │ │ │ ├── Pricing │ │ │ │ │ └── AdjustmentTest.php │ │ │ │ └── _files │ │ │ │ │ ├── full_discount_with_tax.php │ │ │ │ │ ├── order_with_tax.php │ │ │ │ │ ├── report_tax.php │ │ │ │ │ ├── scenarios │ │ │ │ │ ├── excluding_tax_apply_tax_after_discount.php │ │ │ │ │ ├── excluding_tax_apply_tax_after_discount_discount_tax.php │ │ │ │ │ ├── excluding_tax_apply_tax_before_discount.php │ │ │ │ │ ├── excluding_tax_multi_item_row.php │ │ │ │ │ ├── excluding_tax_multi_item_total.php │ │ │ │ │ ├── excluding_tax_multi_item_unit.php │ │ │ │ │ ├── excluding_tax_row.php │ │ │ │ │ ├── excluding_tax_total.php │ │ │ │ │ ├── excluding_tax_unit.php │ │ │ │ │ ├── including_tax_apply_tax_after_discount.php │ │ │ │ │ ├── including_tax_cross_border_trade_disabled.php │ │ │ │ │ ├── including_tax_cross_border_trade_enabled.php │ │ │ │ │ ├── including_tax_row.php │ │ │ │ │ ├── including_tax_total.php │ │ │ │ │ ├── including_tax_unit.php │ │ │ │ │ ├── including_tax_with_custom_price.php │ │ │ │ │ ├── multi_tax_rule_total_calculate_subtotal_no.php │ │ │ │ │ ├── multi_tax_rule_total_calculate_subtotal_yes.php │ │ │ │ │ ├── multi_tax_rule_two_row_calculate_subtotal_yes_row.php │ │ │ │ │ ├── multi_tax_rule_two_row_calculate_subtotal_yes_total.php │ │ │ │ │ ├── multi_tax_rule_unit_calculate_subtotal_no.php │ │ │ │ │ └── multi_tax_rule_unit_calculate_subtotal_yes.php │ │ │ │ │ ├── tax_calculation_data_aggregated.php │ │ │ │ │ ├── tax_class_customer_group.php │ │ │ │ │ ├── tax_class_customer_group_rollback.php │ │ │ │ │ ├── tax_classes.php │ │ │ │ │ ├── tax_classes_de.php │ │ │ │ │ ├── tax_classes_de_rollback.php │ │ │ │ │ ├── tax_classes_rollback.php │ │ │ │ │ ├── tax_rule_postal_36104.php │ │ │ │ │ ├── tax_rule_postal_36104_rollback.php │ │ │ │ │ ├── tax_rule_region_1_al.php │ │ │ │ │ └── tax_rule_region_1_al_rollback.php │ │ │ │ ├── TaxImportExport │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Rate │ │ │ │ │ │ └── ImportExportTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Rate │ │ │ │ │ │ ├── ExportPostTest.php │ │ │ │ │ │ ├── ImportExportTest.php │ │ │ │ │ │ └── ImportPostTest.php │ │ │ │ └── Model │ │ │ │ │ └── Rate │ │ │ │ │ ├── CsvImportHandlerTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── correct_rates_import_file.csv │ │ │ │ │ └── rates_import_file_incorrect_country.csv │ │ │ │ ├── Test │ │ │ │ └── Integrity │ │ │ │ │ ├── DatabaseTest.php │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ ├── Magento │ │ │ │ │ ├── Payment │ │ │ │ │ │ └── MethodsTest.php │ │ │ │ │ └── Widget │ │ │ │ │ │ ├── SkinFilesTest.php │ │ │ │ │ │ └── TemplateFilesTest.php │ │ │ │ │ ├── Modular │ │ │ │ │ ├── AbstractMergedConfigTest.php │ │ │ │ │ ├── AclConfigFilesTest.php │ │ │ │ │ ├── BlockInstantiationTest.php │ │ │ │ │ ├── CacheFilesTest.php │ │ │ │ │ ├── CarrierConfigFilesTest.php │ │ │ │ │ ├── CrontabConfigFilesTest.php │ │ │ │ │ ├── DiConfigFilesTest.php │ │ │ │ │ ├── EavAttributesConfigFilesTest.php │ │ │ │ │ ├── EventConfigFilesTest.php │ │ │ │ │ ├── ExportConfigFilesTest.php │ │ │ │ │ ├── FieldsetConfigFilesTest.php │ │ │ │ │ ├── ImportConfigFilesTest.php │ │ │ │ │ ├── IndexerConfigFilesTest.php │ │ │ │ │ ├── LayoutConfigFilesTest.php │ │ │ │ │ ├── LayoutFilesTest.php │ │ │ │ │ ├── Magento │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ └── AttributeConfigFilesTest.php │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ └── AddressFormatsFilesTest.php │ │ │ │ │ │ ├── Email │ │ │ │ │ │ │ └── EmailTemplateConfigFilesTest.php │ │ │ │ │ │ └── Sales │ │ │ │ │ │ │ └── PdfConfigFilesTest.php │ │ │ │ │ ├── MenuConfigFilesTest.php │ │ │ │ │ ├── MviewConfigFilesTest.php │ │ │ │ │ ├── PaymentConfigFilesTest.php │ │ │ │ │ ├── ProductOptionsConfigFilesTest.php │ │ │ │ │ ├── ProductTypesConfigFilesTest.php │ │ │ │ │ ├── ResourcesConfigFilesTest.php │ │ │ │ │ ├── RouteConfigFilesTest.php │ │ │ │ │ ├── SalesConfigFilesTest.php │ │ │ │ │ ├── SystemConfigFilesTest.php │ │ │ │ │ ├── TemplateFilesTest.php │ │ │ │ │ ├── ThemeConfigFilesTest.php │ │ │ │ │ ├── ViewConfigFilesTest.php │ │ │ │ │ ├── WidgetConfigFilesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── skip_blocks_ce.php │ │ │ │ │ │ └── skip_template_blocks_ce.php │ │ │ │ │ ├── StaticFilesTest.php │ │ │ │ │ ├── Theme │ │ │ │ │ ├── TemplateFilesTest.php │ │ │ │ │ └── XmlFilesTest.php │ │ │ │ │ └── ViewFileReferenceTest.php │ │ │ │ ├── TestFixture │ │ │ │ └── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ └── Noroute.php │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ ├── AbstractOverridesTest.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── FixturesAbstractClass.php │ │ │ │ │ │ ├── FixturesInterface.php │ │ │ │ │ │ └── FixturesTest.php │ │ │ │ │ └── Skip │ │ │ │ │ │ ├── SkipAbstractClass.php │ │ │ │ │ │ ├── SkipInterface.php │ │ │ │ │ │ └── SkipTest.php │ │ │ │ ├── MagentoAdminConfigFixture │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ ├── MagentoConfigFixture │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ ├── MagentoDataFixture │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ ├── ReplaceFixtureTest.php │ │ │ │ │ └── SortFixturesTest.php │ │ │ │ ├── MagentoDataFixtureBeforeTransaction │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ ├── Skip │ │ │ │ │ ├── SkipClassTest.php │ │ │ │ │ ├── SkipDataSetTest.php │ │ │ │ │ └── SkipMethodTest.php │ │ │ │ └── _files │ │ │ │ │ ├── fixture1_first_module.php │ │ │ │ │ ├── fixture1_first_module_rollback.php │ │ │ │ │ ├── fixture2_first_module.php │ │ │ │ │ ├── fixture2_first_module_rollback.php │ │ │ │ │ ├── fixture3_first_module.php │ │ │ │ │ ├── fixture3_first_module_rollback.php │ │ │ │ │ ├── global_fixture_first_module.php │ │ │ │ │ └── global_fixture_first_module_rollback.php │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ └── _files │ │ │ │ │ ├── fixture1_second_module.php │ │ │ │ │ ├── fixture1_second_module_rollback.php │ │ │ │ │ ├── fixture2_second_module.php │ │ │ │ │ ├── fixture2_second_module_rollback.php │ │ │ │ │ ├── fixture3_second_module.php │ │ │ │ │ ├── fixture3_second_module_rollback.php │ │ │ │ │ └── fixture_with_required_fixture.php │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ └── _files │ │ │ │ │ ├── fixture1_third_module.php │ │ │ │ │ └── fixture1_third_module_rollback.php │ │ │ │ ├── TestModuleSample │ │ │ │ └── ModuleInstallationTest.php │ │ │ │ ├── Theme │ │ │ │ ├── Block │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ └── Theme │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── GeneralTest.php │ │ │ │ │ └── Html │ │ │ │ │ │ ├── BreadcrumbsTest.php │ │ │ │ │ │ ├── FooterTest.php │ │ │ │ │ │ └── Header │ │ │ │ │ │ └── LogoTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ └── Design │ │ │ │ │ │ ├── Config │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ ├── ThemeControllerTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── simple-js-file.js │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── Processor │ │ │ │ │ │ │ └── DesignThemeTest.php │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ ├── Design │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ └── ExceptionsTest.php │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── page_layouts.xml │ │ │ │ │ │ │ └── page_layouts2.xml │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Theme │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ ├── Theme │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ ├── Domain │ │ │ │ │ │ │ └── VirtualTest.php │ │ │ │ │ │ ├── FileTest.php │ │ │ │ │ │ ├── RegistrationTest.php │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ ├── ThemeTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ ├── a_d │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ ├── b_e │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ ├── magento_default │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ └── magento_g │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── StoreThemesResolverInterfaceTest.php │ │ │ │ │ │ └── ThemeProviderTest.php │ │ │ │ │ ├── ThemeTest.php │ │ │ │ │ ├── View │ │ │ │ │ │ └── DesignTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── design │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── area_two │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── file │ │ │ │ │ │ ├── design_area │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── file │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── default_iphone │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── preview_image.jpg │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── Test │ │ │ │ │ │ ├── cache_test_theme │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ │ │ ├── catalog_category_view.xml │ │ │ │ │ │ │ │ ├── catalog_category_view_type_default.xml │ │ │ │ │ │ │ │ ├── catalog_product_view.xml │ │ │ │ │ │ │ │ ├── catalog_product_view_type_simple.xml │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ └── theme_template.phtml │ │ │ │ │ │ │ │ ├── theme_file.txt │ │ │ │ │ │ │ │ └── theme_file_with_2_dots..txt │ │ │ │ │ │ │ ├── Magento_Cms │ │ │ │ │ │ │ │ └── layout_test_handle_extra.xml │ │ │ │ │ │ │ ├── Magento_Core │ │ │ │ │ │ │ │ ├── layout_test_handle_main.xml │ │ │ │ │ │ │ │ └── layout_test_handle_sample.xml │ │ │ │ │ │ │ ├── Namespace_Module │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ └── view.xml │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ └── fr_FR │ │ │ │ │ │ │ │ │ └── logo.gif │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── logo.gif │ │ │ │ │ │ │ │ └── logo_email.gif │ │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ └── tabs.js │ │ │ │ │ │ │ │ ├── result_source.css │ │ │ │ │ │ │ │ ├── result_source_dev.css │ │ │ │ │ │ │ │ └── source.less │ │ │ │ │ │ ├── publication │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── test_theme │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── Vendor │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ ├── Fixture_Module │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── Namespace_Module │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── absolute_valid_module.gif │ │ │ │ │ │ │ ├── access_violation.php │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ │ ├── base64.css │ │ │ │ │ │ │ ├── body.gif │ │ │ │ │ │ │ ├── deep │ │ │ │ │ │ │ │ └── recursive.css │ │ │ │ │ │ │ ├── exception.css │ │ │ │ │ │ │ └── file.css │ │ │ │ │ │ │ ├── h1.gif │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── h2.gif │ │ │ │ │ │ │ ├── recursive.css │ │ │ │ │ │ │ ├── recursive.gif │ │ │ │ │ │ │ ├── recursive2.gif │ │ │ │ │ │ │ └── scripts.js │ │ │ │ │ │ └── access_violation.php │ │ │ │ └── _files │ │ │ │ │ ├── config_data.php │ │ │ │ │ ├── config_data_rollback.php │ │ │ │ │ ├── design_change.php │ │ │ │ │ ├── design_change_rollback.php │ │ │ │ │ ├── design_change_timezone.php │ │ │ │ │ └── design_change_timezone_rollback.php │ │ │ │ ├── Translation │ │ │ │ ├── Controller │ │ │ │ │ └── AjaxTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── InlineParserTest.php │ │ │ │ │ ├── Js │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ └── PreProcessorTest.php │ │ │ │ │ ├── StringTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ ├── Store │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ ├── en_AU.csv │ │ │ │ │ │ │ │ ├── en_UK.csv │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ └── design │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ ├── local_config │ │ │ │ │ │ ├── local_config │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ ├── local.xml │ │ │ │ │ │ │ │ └── prohibited.filename.xml │ │ │ │ │ │ │ ├── local.xml │ │ │ │ │ │ │ └── z.xml │ │ │ │ │ │ └── no_local_config │ │ │ │ │ │ │ ├── a.xml │ │ │ │ │ │ │ ├── b.xml │ │ │ │ │ │ │ └── custom │ │ │ │ │ │ │ └── local.xml │ │ │ │ │ │ ├── locale │ │ │ │ │ │ └── en_AU │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── media │ │ │ │ │ │ └── some_file.txt │ │ │ │ └── _files │ │ │ │ │ ├── catalog_message_translate.php │ │ │ │ │ ├── catalog_message_translate_rollback.php │ │ │ │ │ ├── db_translate.php │ │ │ │ │ └── db_translate_admin_store.php │ │ │ │ ├── Ui │ │ │ │ ├── Api │ │ │ │ │ └── BookmarkRepositoryTest.php │ │ │ │ ├── Component │ │ │ │ │ ├── ConfigurationTest.php │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── ButtonTest.php │ │ │ │ │ │ └── SplitButtonTest.php │ │ │ │ │ └── Form │ │ │ │ │ │ └── Element │ │ │ │ │ │ ├── DataType │ │ │ │ │ │ └── DateTest.php │ │ │ │ │ │ └── MultiSelectTest.php │ │ │ │ ├── Config │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ ├── Reader │ │ │ │ │ │ └── DomTest.php │ │ │ │ │ └── ReaderTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Index │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ └── HandleTest.php │ │ │ │ │ └── Index │ │ │ │ │ │ └── RenderTest.php │ │ │ │ ├── DataProvider │ │ │ │ │ ├── EntityFake.php │ │ │ │ │ └── SearchResultFactoryTest.php │ │ │ │ ├── Model │ │ │ │ │ └── AuthorizationMock.php │ │ │ │ └── _files │ │ │ │ │ ├── bookmarks.php │ │ │ │ │ ├── expected_result_configuration.php │ │ │ │ │ └── view │ │ │ │ │ ├── module_one │ │ │ │ │ └── ui_component │ │ │ │ │ │ ├── etc │ │ │ │ │ │ └── test_definition.xml │ │ │ │ │ │ ├── parent_component.xml │ │ │ │ │ │ └── test_component.xml │ │ │ │ │ ├── module_two │ │ │ │ │ └── ui_component │ │ │ │ │ │ ├── etc │ │ │ │ │ │ └── test_definition.xml │ │ │ │ │ │ ├── parent_component.xml │ │ │ │ │ │ └── test_component.xml │ │ │ │ │ └── ui_component │ │ │ │ │ ├── arbitrary │ │ │ │ │ ├── action.xml │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ ├── actions.xml │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ ├── boolean.xml │ │ │ │ │ ├── button.xml │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ ├── column.xml │ │ │ │ │ ├── columns.xml │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ ├── component.xml │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ ├── date.xml │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ ├── email.xml │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ ├── field.xml │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ ├── file.xml │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ ├── filters.xml │ │ │ │ │ ├── form.xml │ │ │ │ │ ├── hidden.xml │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ ├── input.xml │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ ├── listing.xml │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ ├── massaction.xml │ │ │ │ │ ├── modal.xml │ │ │ │ │ ├── multiline.xml │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ ├── paging.xml │ │ │ │ │ ├── radioset.xml │ │ │ │ │ ├── range.xml │ │ │ │ │ ├── select.xml │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ ├── tab.xml │ │ │ │ │ ├── text.xml │ │ │ │ │ ├── textarea.xml │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ ├── etc │ │ │ │ │ └── test_definition_merged.xml │ │ │ │ │ ├── expected │ │ │ │ │ ├── action.php │ │ │ │ │ ├── actionDelete.php │ │ │ │ │ ├── actions.php │ │ │ │ │ ├── actionsColumn.php │ │ │ │ │ ├── bookmark.php │ │ │ │ │ ├── boolean.php │ │ │ │ │ ├── button.php │ │ │ │ │ ├── checkbox.php │ │ │ │ │ ├── checkboxset.php │ │ │ │ │ ├── column.php │ │ │ │ │ ├── columns.php │ │ │ │ │ ├── columnsControls.php │ │ │ │ │ ├── component.php │ │ │ │ │ ├── dataSource.php │ │ │ │ │ ├── date.php │ │ │ │ │ ├── dynamicRows.php │ │ │ │ │ ├── email.php │ │ │ │ │ ├── exportButton.php │ │ │ │ │ ├── field.php │ │ │ │ │ ├── fieldset.php │ │ │ │ │ ├── file.php │ │ │ │ │ ├── fileUploader.php │ │ │ │ │ ├── filterDate.php │ │ │ │ │ ├── filterInput.php │ │ │ │ │ ├── filterRange.php │ │ │ │ │ ├── filters.php │ │ │ │ │ ├── form.php │ │ │ │ │ ├── hidden.php │ │ │ │ │ ├── htmlContent.php │ │ │ │ │ ├── imageUploader.php │ │ │ │ │ ├── input.php │ │ │ │ │ ├── insertForm.php │ │ │ │ │ ├── insertListing.php │ │ │ │ │ ├── listing.php │ │ │ │ │ ├── listingToolbar.php │ │ │ │ │ ├── massaction.php │ │ │ │ │ ├── modal.php │ │ │ │ │ ├── multiline.php │ │ │ │ │ ├── multiselect.php │ │ │ │ │ ├── paging.php │ │ │ │ │ ├── radioset.php │ │ │ │ │ ├── range.php │ │ │ │ │ ├── select.php │ │ │ │ │ ├── selectionsColumn.php │ │ │ │ │ ├── tab.php │ │ │ │ │ ├── text.php │ │ │ │ │ ├── textarea.php │ │ │ │ │ └── wysiwyg.php │ │ │ │ │ ├── mixed │ │ │ │ │ ├── action.xml │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ ├── actions.xml │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ ├── boolean.xml │ │ │ │ │ ├── button.xml │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ ├── column.xml │ │ │ │ │ ├── columns.xml │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ ├── component.xml │ │ │ │ │ ├── container.xml │ │ │ │ │ ├── dataProvider.xml │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ ├── date.xml │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ ├── email.xml │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ ├── field.xml │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ ├── file.xml │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ ├── filters.xml │ │ │ │ │ ├── form.xml │ │ │ │ │ ├── hidden.xml │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ ├── input.xml │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ ├── listing.xml │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ ├── massaction.xml │ │ │ │ │ ├── modal.xml │ │ │ │ │ ├── multiline.xml │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ ├── nav.xml │ │ │ │ │ ├── number.xml │ │ │ │ │ ├── paging.xml │ │ │ │ │ ├── price.xml │ │ │ │ │ ├── radioset.xml │ │ │ │ │ ├── range.xml │ │ │ │ │ ├── select.xml │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ ├── tab.xml │ │ │ │ │ ├── text.xml │ │ │ │ │ ├── textarea.xml │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ ├── semantic │ │ │ │ │ ├── action.xml │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ ├── actions.xml │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ ├── boolean.xml │ │ │ │ │ ├── button.xml │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ ├── column.xml │ │ │ │ │ ├── columns.xml │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ ├── component.xml │ │ │ │ │ ├── container.xml │ │ │ │ │ ├── dataProvider.xml │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ ├── date.xml │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ ├── email.xml │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ ├── field.xml │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ ├── file.xml │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ ├── filters.xml │ │ │ │ │ ├── form.xml │ │ │ │ │ ├── hidden.xml │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ ├── input.xml │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ ├── listing.xml │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ ├── massaction.xml │ │ │ │ │ ├── modal.xml │ │ │ │ │ ├── multiline.xml │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ ├── nav.xml │ │ │ │ │ ├── number.xml │ │ │ │ │ ├── paging.xml │ │ │ │ │ ├── price.xml │ │ │ │ │ ├── radioset.xml │ │ │ │ │ ├── range.xml │ │ │ │ │ ├── select.xml │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ ├── tab.xml │ │ │ │ │ ├── text.xml │ │ │ │ │ ├── textarea.xml │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ └── test_component_merged.xml │ │ │ │ ├── Ups │ │ │ │ ├── Model │ │ │ │ │ ├── CarrierTest.php │ │ │ │ │ └── CollectRatesTest.php │ │ │ │ └── _files │ │ │ │ │ ├── ShipmentAcceptResponse.xml │ │ │ │ │ ├── ShipmentConfirmRequest.xml │ │ │ │ │ ├── ShipmentConfirmResponse.xml │ │ │ │ │ ├── ups_rates_response_option1.xml │ │ │ │ │ ├── ups_rates_response_option2.xml │ │ │ │ │ ├── ups_rates_response_option3.xml │ │ │ │ │ ├── ups_rates_response_option4.xml │ │ │ │ │ ├── ups_rates_response_option5.xml │ │ │ │ │ ├── ups_rates_response_option6.xml │ │ │ │ │ ├── ups_rates_response_option7.xml │ │ │ │ │ └── ups_rates_response_option8.xml │ │ │ │ ├── UrlRewrite │ │ │ │ ├── Block │ │ │ │ │ ├── Catalog │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ ├── Cms │ │ │ │ │ │ └── Page │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ ├── EditTest.php │ │ │ │ │ └── SelectorTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── SaveRewriteTest.php │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── StoreSwitcher │ │ │ │ │ │ └── RewriteUrlTest.php │ │ │ │ │ └── UrlFinderInterfaceTest.php │ │ │ │ └── _files │ │ │ │ │ ├── url_rewrite.php │ │ │ │ │ ├── url_rewrite_not_existing_entity.php │ │ │ │ │ ├── url_rewrite_not_existing_entity_rollback.php │ │ │ │ │ ├── url_rewrite_rollback.php │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ └── url_rewrites_rollback.php │ │ │ │ ├── User │ │ │ │ ├── Block │ │ │ │ │ ├── Role │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ └── User │ │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Tab │ │ │ │ │ │ └── MainTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ │ ├── Locks │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ └── MassUnlockTest.php │ │ │ │ │ │ ├── User │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ ├── InvalidateTokenTest.php │ │ │ │ │ │ └── RoleTest.php │ │ │ │ │ │ └── UserTest.php │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Role │ │ │ │ │ │ │ └── User │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ ├── UserTest.php │ │ │ │ │ └── ValidateUserDateFieldsTest.php │ │ │ │ └── _files │ │ │ │ │ ├── dummy_user.php │ │ │ │ │ ├── locked_users.php │ │ │ │ │ ├── user_with_custom_role.php │ │ │ │ │ ├── user_with_custom_role_rollback.php │ │ │ │ │ ├── user_with_role.php │ │ │ │ │ └── user_with_role_rollback.php │ │ │ │ ├── Usps │ │ │ │ ├── Api │ │ │ │ │ └── GuestCouponManagementTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── cart_rule_coupon_free_shipping.php │ │ │ │ │ ├── cart_rule_coupon_free_shipping_rollback.php │ │ │ │ │ ├── rates_response.xml │ │ │ │ │ ├── response_rates.xml │ │ │ │ │ └── success_usps_response_rates.xml │ │ │ │ └── Model │ │ │ │ │ └── CarrierTest.php │ │ │ │ ├── Variable │ │ │ │ ├── Block │ │ │ │ │ └── System │ │ │ │ │ │ └── Variable │ │ │ │ │ │ └── EditTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── System │ │ │ │ │ │ └── VariableTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Structure │ │ │ │ │ │ │ └── DomTest.php │ │ │ │ │ └── VariableTest.php │ │ │ │ └── _files │ │ │ │ │ └── variable.php │ │ │ │ ├── Vault │ │ │ │ ├── Model │ │ │ │ │ ├── PaymentTokenRepositoryTest.php │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── PaymentTokenTest.php │ │ │ │ └── _files │ │ │ │ │ ├── customer.php │ │ │ │ │ ├── payflowpro_vault_token.php │ │ │ │ │ ├── payment_tokens.php │ │ │ │ │ └── token.php │ │ │ │ ├── Version │ │ │ │ └── Controller │ │ │ │ │ └── Index │ │ │ │ │ └── IndexTest.php │ │ │ │ ├── Webapi │ │ │ │ ├── Controller │ │ │ │ │ ├── PathProcessorTest.php │ │ │ │ │ ├── Rest │ │ │ │ │ │ └── SchemaRequestProcessorTest.php │ │ │ │ │ ├── RestTest.php │ │ │ │ │ └── SoapTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── webapi.php │ │ │ │ │ │ │ ├── webapiA.xml │ │ │ │ │ │ │ └── webapiB.xml │ │ │ │ │ ├── ServiceMetadataTest.php │ │ │ │ │ └── Soap │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ ├── Service │ │ │ │ │ └── Entity │ │ │ │ │ │ └── TestService.php │ │ │ │ ├── ServiceNameCollisionTest.php │ │ │ │ └── _files │ │ │ │ │ ├── webapi_user.php │ │ │ │ │ └── webapi_user_rollback.php │ │ │ │ ├── WebapiAsync │ │ │ │ ├── Controller │ │ │ │ │ └── Rest │ │ │ │ │ │ ├── AsynchronousSchemaRequestProcessorMock.php │ │ │ │ │ │ └── AsynchronousSchemaRequestProcessorTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ └── Rest │ │ │ │ │ │ └── Swagger │ │ │ │ │ │ └── GeneratorTest.php │ │ │ │ └── Plugin │ │ │ │ │ └── ServiceMetadataTest.php │ │ │ │ ├── Weee │ │ │ │ ├── Block │ │ │ │ │ └── Product │ │ │ │ │ │ └── View │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ └── FixedProductTaxAttributeTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ └── WeeeAttributesControllerTest.php │ │ │ │ │ │ ├── Save │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ └── FixedProductTaxTest.php │ │ │ │ │ │ └── Update │ │ │ │ │ │ └── InputType │ │ │ │ │ │ └── FixedProductTaxTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── Set │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ └── AttributeFixedProductTaxTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ ├── TaxTest.php │ │ │ │ │ └── Total │ │ │ │ │ │ └── Quote │ │ │ │ │ │ └── CalculateTest.php │ │ │ │ ├── Plugin │ │ │ │ │ └── Catalog │ │ │ │ │ │ └── Ui │ │ │ │ │ │ └── Component │ │ │ │ │ │ └── Listing │ │ │ │ │ │ └── ColumnsTest.php │ │ │ │ ├── Ui │ │ │ │ │ └── DataProvider │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── Form │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ └── Eav │ │ │ │ │ │ └── FixedAttributeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── fixed_product_attribute.php │ │ │ │ │ ├── fixed_product_attribute_rollback.php │ │ │ │ │ ├── product_with_fpt.php │ │ │ │ │ ├── product_with_fpt_rollback.php │ │ │ │ │ ├── product_with_two_fpt.php │ │ │ │ │ ├── product_with_two_fpt_rollback.php │ │ │ │ │ ├── quote_multishipping.php │ │ │ │ │ └── quote_multishipping_rollback.php │ │ │ │ ├── Widget │ │ │ │ ├── Block │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Widget │ │ │ │ │ │ ├── Instance │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ ├── Chooser │ │ │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ │ │ ├── DesignAbstractionTest.php │ │ │ │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── design-abstraction_select.html │ │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ │ ├── child_page_with_inherited_containers.xml │ │ │ │ │ │ │ │ │ ├── child_page_with_inherited_imported_containers.xml │ │ │ │ │ │ │ │ │ ├── child_page_with_own_containers.xml │ │ │ │ │ │ │ │ │ ├── child_page_without_containers.xml │ │ │ │ │ │ │ │ │ ├── customer_account.xml │ │ │ │ │ │ │ │ │ ├── non_page_handle_with_own_containers.xml │ │ │ │ │ │ │ │ │ ├── page_empty.xml │ │ │ │ │ │ │ │ │ ├── root_page_with_imported_containers.xml │ │ │ │ │ │ │ │ │ ├── root_page_with_own_containers.xml │ │ │ │ │ │ │ │ │ ├── root_page_without_containers.xml │ │ │ │ │ │ │ │ │ └── root_page_without_own_containers.xml │ │ │ │ │ │ │ │ │ └── page_types_select.html │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ └── LayoutTest.php │ │ │ │ │ │ │ │ └── MainTest.php │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ ├── Widget │ │ │ │ │ │ ├── Instance │ │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ │ │ └── WidgetTest.php │ │ │ │ ├── Model │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── DataTest.php │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── catalog_new_products_list.xml │ │ │ │ │ │ │ ├── expectedGlobalArray.php │ │ │ │ │ │ │ ├── expectedGlobalDesignArray.php │ │ │ │ │ │ │ ├── expectedMergedArray.php │ │ │ │ │ │ │ ├── orders_and_returns.xml │ │ │ │ │ │ │ └── orders_and_returns_customized.xml │ │ │ │ │ ├── Layout │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Layout │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ ├── Template │ │ │ │ │ │ └── FilterTest.php │ │ │ │ │ ├── Widget │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ │ └── WidgetTest.php │ │ │ │ ├── Setup │ │ │ │ │ └── LayoutUpdateConverterTest.php │ │ │ │ └── _files │ │ │ │ │ ├── cms_page_link_widget.php │ │ │ │ │ ├── cms_page_link_widget_rollback.php │ │ │ │ │ ├── design │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── magento_basic │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── product_widget_new.png │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ └── theme.xml │ │ │ │ │ ├── layout_cache.php │ │ │ │ │ ├── layout_update.php │ │ │ │ │ ├── new_widget.php │ │ │ │ │ ├── new_widget_rollback.php │ │ │ │ │ ├── widgets.php │ │ │ │ │ └── widgets_rollback.php │ │ │ │ └── Wishlist │ │ │ │ ├── Block │ │ │ │ ├── Account │ │ │ │ │ └── LinkTest.php │ │ │ │ ├── Catalog │ │ │ │ │ └── Product │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── AddTo │ │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ │ └── View │ │ │ │ │ │ └── AddTo │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ ├── Customer │ │ │ │ │ ├── SharingTest.php │ │ │ │ │ ├── SidebarTest.php │ │ │ │ │ ├── Wishlist │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ ├── ColumnTest.php │ │ │ │ │ │ │ └── OptionsTest.php │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ │ └── WishlistTest.php │ │ │ │ ├── LinkTest.php │ │ │ │ └── Share │ │ │ │ │ └── WishlistTest.php │ │ │ │ ├── Controller │ │ │ │ ├── Index │ │ │ │ │ ├── AddTest.php │ │ │ │ │ ├── AllcartTest.php │ │ │ │ │ ├── CartTest.php │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ ├── PluginTest.php │ │ │ │ │ ├── RemoveTest.php │ │ │ │ │ ├── SendTest.php │ │ │ │ │ ├── UpdateItemOptionsTest.php │ │ │ │ │ └── UpdateTest.php │ │ │ │ ├── ShareTest.php │ │ │ │ └── SharedTest.php │ │ │ │ ├── Helper │ │ │ │ └── DataTest.php │ │ │ │ ├── Model │ │ │ │ ├── ItemTest.php │ │ │ │ ├── ResourceModel │ │ │ │ │ └── Item │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ └── WishlistTest.php │ │ │ │ ├── Plugin │ │ │ │ └── Model │ │ │ │ │ └── ResourceModel │ │ │ │ │ └── ProductTest.php │ │ │ │ └── _files │ │ │ │ ├── two_wishlists_for_two_diff_customers.php │ │ │ │ ├── two_wishlists_for_two_diff_customers_rollback.php │ │ │ │ ├── wishlist.php │ │ │ │ ├── wishlist_on_second_website.php │ │ │ │ ├── wishlist_on_second_website_rollback.php │ │ │ │ ├── wishlist_rollback.php │ │ │ │ ├── wishlist_shared.php │ │ │ │ ├── wishlist_shared_rollback.php │ │ │ │ ├── wishlist_with_configurable_product.php │ │ │ │ ├── wishlist_with_configurable_product_rollback.php │ │ │ │ ├── wishlist_with_disabled_product.php │ │ │ │ ├── wishlist_with_disabled_product_rollback.php │ │ │ │ ├── wishlist_with_disabled_simple_product.php │ │ │ │ ├── wishlist_with_disabled_simple_product_rollback.php │ │ │ │ ├── wishlist_with_grouped_product.php │ │ │ │ ├── wishlist_with_grouped_product_rollback.php │ │ │ │ ├── wishlist_with_multiple_products.php │ │ │ │ ├── wishlist_with_multiple_products_rollback.php │ │ │ │ ├── wishlist_with_not_visible_product.php │ │ │ │ ├── wishlist_with_not_visible_product_rollback.php │ │ │ │ ├── wishlist_with_product_qty_increments.php │ │ │ │ ├── wishlist_with_product_qty_increments_rollback.php │ │ │ │ ├── wishlist_with_product_qty_three.php │ │ │ │ ├── wishlist_with_product_qty_three_rollback.php │ │ │ │ ├── wishlist_with_simple_product.php │ │ │ │ └── wishlist_with_simple_product_rollback.php │ │ └── tmp │ │ │ └── .gitignore │ ├── js │ │ └── jasmine │ │ │ ├── assets │ │ │ ├── apply │ │ │ │ ├── components │ │ │ │ │ └── fn.js │ │ │ │ ├── config.json │ │ │ │ ├── index.js │ │ │ │ └── templates │ │ │ │ │ └── node.html │ │ │ ├── gallery │ │ │ │ └── config.json │ │ │ ├── jsbuild │ │ │ │ ├── config.js │ │ │ │ ├── external.js │ │ │ │ └── local.js │ │ │ ├── lib │ │ │ │ └── web │ │ │ │ │ └── mage │ │ │ │ │ ├── account_menu.html │ │ │ │ │ ├── menu.html │ │ │ │ │ ├── tabs.html │ │ │ │ │ └── translate-inline.html │ │ │ ├── script │ │ │ │ ├── config.json │ │ │ │ ├── index.js │ │ │ │ └── templates │ │ │ │ │ ├── selector.html │ │ │ │ │ └── virtual.html │ │ │ ├── text │ │ │ │ ├── config.js │ │ │ │ ├── external.html │ │ │ │ └── local.html │ │ │ └── tools.js │ │ │ ├── require.conf.js │ │ │ ├── spec_runner │ │ │ ├── index.js │ │ │ ├── jasmine-config.js │ │ │ ├── settings.json │ │ │ ├── tasks │ │ │ │ ├── connect.js │ │ │ │ └── jasmine.js │ │ │ └── template.html │ │ │ └── tests │ │ │ ├── app │ │ │ └── code │ │ │ │ └── Magento │ │ │ │ ├── Backend │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ ├── media-uploader.test.js │ │ │ │ │ └── validate-store.test.js │ │ │ │ ├── Bundle │ │ │ │ ├── adminhtml │ │ │ │ │ └── js │ │ │ │ │ │ └── components │ │ │ │ │ │ └── bundle-checkbox.test.js │ │ │ │ └── base │ │ │ │ │ └── js │ │ │ │ │ └── price-bundle.test.js │ │ │ │ ├── Catalog │ │ │ │ ├── adminhtml │ │ │ │ │ └── js │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── dynamic-rows-import-custom-options.test.js │ │ │ │ │ │ └── product-ui-select.test.js │ │ │ │ │ │ ├── disable-on-option │ │ │ │ │ │ └── yesno.test.js │ │ │ │ │ │ ├── product-gallery.test.js │ │ │ │ │ │ ├── use-parent-settings │ │ │ │ │ │ └── toggle-disabled-mixin.test.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ └── percentage-price-calculator.test.js │ │ │ │ ├── base │ │ │ │ │ └── js │ │ │ │ │ │ └── product │ │ │ │ │ │ └── list │ │ │ │ │ │ └── columns │ │ │ │ │ │ ├── final-price.test.js │ │ │ │ │ │ └── image.test.js │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ ├── product │ │ │ │ │ ├── breadcrumbs.test.js │ │ │ │ │ ├── list │ │ │ │ │ │ └── toolbar.test.js │ │ │ │ │ ├── remaining-characters.test.js │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── data-storage.test.js │ │ │ │ │ │ ├── ids-storage-compare.test.js │ │ │ │ │ │ ├── ids-storage.test.js │ │ │ │ │ │ └── storage-service.test.js │ │ │ │ │ └── view │ │ │ │ │ │ └── product-ids-resolver.test.js │ │ │ │ │ └── storage-manager.test.js │ │ │ │ ├── Checkout │ │ │ │ ├── base │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── model │ │ │ │ │ │ └── default-post-code-resolver.test.js │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ ├── action │ │ │ │ │ ├── redirect-on-success.test.js │ │ │ │ │ └── set-payment-information-extended.test.js │ │ │ │ │ ├── empty-cart.test.js │ │ │ │ │ ├── model │ │ │ │ │ ├── cart │ │ │ │ │ │ ├── cache.test.js │ │ │ │ │ │ ├── estimate-service.test.js │ │ │ │ │ │ └── totals-processor │ │ │ │ │ │ │ └── default.test.js │ │ │ │ │ ├── checkout-data-resolver.test.js │ │ │ │ │ ├── error-processor.test.js │ │ │ │ │ ├── new-customer-address.test.js │ │ │ │ │ └── totals.test.js │ │ │ │ │ ├── region-updater.test.js │ │ │ │ │ ├── sidebar.test.js │ │ │ │ │ └── view │ │ │ │ │ ├── billing-address.test.js │ │ │ │ │ ├── cart │ │ │ │ │ └── shipping-estimation.test.js │ │ │ │ │ ├── form │ │ │ │ │ └── element │ │ │ │ │ │ └── email.test.js │ │ │ │ │ ├── minicart.test.js │ │ │ │ │ ├── shipping.test.js │ │ │ │ │ └── summary │ │ │ │ │ └── cart-items.test.js │ │ │ │ ├── CheckoutAgreements │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── model │ │ │ │ │ ├── agreement-validator.test.js │ │ │ │ │ ├── place-order-mixin.test.js │ │ │ │ │ └── set-payment-information-mixin.test.js │ │ │ │ ├── ConfigurableProduct │ │ │ │ └── view │ │ │ │ │ ├── adminhtml │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── dynamic-rows-configurable.test.js │ │ │ │ │ │ └── qty-configurable.test.js │ │ │ │ │ │ └── variations │ │ │ │ │ │ └── variations.test.js │ │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── configurable.test.js │ │ │ │ ├── Customer │ │ │ │ ├── adminhtml │ │ │ │ │ └── js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── form │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── form.test.js │ │ │ │ │ │ └── insert-listing.test.js │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ ├── customer-data.test.js │ │ │ │ │ ├── customer-global-session-loader.test.js │ │ │ │ │ ├── invalidation-processor.test.js │ │ │ │ │ ├── model │ │ │ │ │ └── customer │ │ │ │ │ │ └── address.test.js │ │ │ │ │ ├── section-config.test.js │ │ │ │ │ ├── validation.test.js │ │ │ │ │ └── view │ │ │ │ │ └── authentication-popup.test.js │ │ │ │ ├── Directory │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── region-updater.test.js │ │ │ │ ├── InstantPurchase │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── view │ │ │ │ │ └── instant-purchase.test.js │ │ │ │ ├── MediaGalleryUi │ │ │ │ └── adminhtml │ │ │ │ │ └── js │ │ │ │ │ └── grid │ │ │ │ │ └── messages.test.js │ │ │ │ ├── Msrp │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── msrp.test.js │ │ │ │ ├── Multishipping │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ ├── multi-shipping-balance.test.js │ │ │ │ │ └── multi-shipping.test.js │ │ │ │ ├── Newsletter │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── newsletter-sign-up.test.js │ │ │ │ ├── PageCache │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ ├── form-key-provider.test.js │ │ │ │ │ └── page-cache.test.js │ │ │ │ ├── Payment │ │ │ │ ├── adminhtml │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── transparent.test.js │ │ │ │ └── base │ │ │ │ │ └── js │ │ │ │ │ └── model │ │ │ │ │ └── credit-card-validation │ │ │ │ │ └── validator.test.js │ │ │ │ ├── Paypal │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── view │ │ │ │ │ └── payment │ │ │ │ │ └── method-renderer │ │ │ │ │ ├── in-context │ │ │ │ │ └── checkout-express.test.js │ │ │ │ │ └── paypal-express-abstract.test.js │ │ │ │ ├── ProductVideo │ │ │ │ └── adminhtml │ │ │ │ │ └── js │ │ │ │ │ └── get-video-information.test.js │ │ │ │ ├── Review │ │ │ │ └── view │ │ │ │ │ ├── base │ │ │ │ │ └── web │ │ │ │ │ │ ├── js │ │ │ │ │ │ └── product │ │ │ │ │ │ │ └── summary.js │ │ │ │ │ │ └── template │ │ │ │ │ │ └── product │ │ │ │ │ │ ├── summary.html │ │ │ │ │ │ └── summary_short.html │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── process-review.test.js │ │ │ │ ├── Rule │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── web │ │ │ │ │ └── conditions-data-normalizer.test.js │ │ │ │ ├── Sales │ │ │ │ └── adminhtml │ │ │ │ │ └── js │ │ │ │ │ └── order │ │ │ │ │ └── create │ │ │ │ │ └── scripts.test.js │ │ │ │ ├── Security │ │ │ │ └── view │ │ │ │ │ └── base │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── escaper.test.js │ │ │ │ ├── Swatches │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── swatch-renderer.test.js │ │ │ │ ├── Tax │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── view │ │ │ │ │ └── checkout │ │ │ │ │ └── summary │ │ │ │ │ └── grand-total.test.js │ │ │ │ ├── Theme │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ ├── cookie-status.test.js │ │ │ │ │ ├── theme.test.js │ │ │ │ │ └── view │ │ │ │ │ ├── add-home-breadcrumb.test.js │ │ │ │ │ └── breadcrumbs.test.js │ │ │ │ ├── Ui │ │ │ │ ├── adminhtml │ │ │ │ │ └── js │ │ │ │ │ │ └── form │ │ │ │ │ │ └── insert.test.js │ │ │ │ ├── base │ │ │ │ │ └── js │ │ │ │ │ │ ├── block-loader.test.js │ │ │ │ │ │ ├── core │ │ │ │ │ │ └── layout.test.js │ │ │ │ │ │ ├── dynamic-rows │ │ │ │ │ │ ├── dynamic-rows.test.js │ │ │ │ │ │ └── record.test.js │ │ │ │ │ │ ├── form │ │ │ │ │ │ ├── adapter.test.js │ │ │ │ │ │ ├── client.test.js │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── area.test.js │ │ │ │ │ │ │ ├── button.test.js │ │ │ │ │ │ │ ├── collection.test.js │ │ │ │ │ │ │ ├── collection │ │ │ │ │ │ │ │ └── item.test.js │ │ │ │ │ │ │ ├── group.test.js │ │ │ │ │ │ │ ├── html.test.js │ │ │ │ │ │ │ ├── multiline.test.js │ │ │ │ │ │ │ ├── tab.test.js │ │ │ │ │ │ │ └── tab_group.test.js │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ ├── abstract.test.js │ │ │ │ │ │ │ ├── boolean.test.js │ │ │ │ │ │ │ ├── color-picker.test.js │ │ │ │ │ │ │ ├── date-time.test.js │ │ │ │ │ │ │ ├── date.test.js │ │ │ │ │ │ │ ├── file-uploader.test.js │ │ │ │ │ │ │ ├── image-uploader.test.js │ │ │ │ │ │ │ ├── multiselect.test.js │ │ │ │ │ │ │ ├── post-code.test.js │ │ │ │ │ │ │ ├── region.test.js │ │ │ │ │ │ │ ├── select.test.js │ │ │ │ │ │ │ ├── single-checkbox-use-config.test.js │ │ │ │ │ │ │ ├── textarea.test.js │ │ │ │ │ │ │ └── url-input.test.js │ │ │ │ │ │ ├── form.test.js │ │ │ │ │ │ ├── provider.test.js │ │ │ │ │ │ └── ui-select.test.js │ │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── columns │ │ │ │ │ │ │ ├── actions.test.js │ │ │ │ │ │ │ ├── column.test.js │ │ │ │ │ │ │ ├── date.test.js │ │ │ │ │ │ │ ├── expandable.test.js │ │ │ │ │ │ │ ├── image-preview.test.js │ │ │ │ │ │ │ ├── multiselect.test.js │ │ │ │ │ │ │ └── select.test.js │ │ │ │ │ │ ├── controls │ │ │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ │ │ └── storage.test.js │ │ │ │ │ │ │ └── columns.test.js │ │ │ │ │ │ ├── data-storage.test.js │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ └── bulk.test.js │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── filters.test.js │ │ │ │ │ │ │ └── range.test.js │ │ │ │ │ │ ├── masonry.test.js │ │ │ │ │ │ ├── paging │ │ │ │ │ │ │ └── paging.test.js │ │ │ │ │ │ ├── provider.test.js │ │ │ │ │ │ ├── resize.test.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ └── search.test.js │ │ │ │ │ │ ├── sortBy.test.js │ │ │ │ │ │ ├── sticky │ │ │ │ │ │ │ └── sticky.test.js │ │ │ │ │ │ ├── tree-massactions.test.js │ │ │ │ │ │ └── url-filter-applier.test.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ └── links.test.js │ │ │ │ │ │ ├── events.test.js │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ └── bind │ │ │ │ │ │ │ │ ├── color-picker.test.js │ │ │ │ │ │ │ │ ├── datepicker.test.js │ │ │ │ │ │ │ │ └── i18n.test.js │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── console-logger.test.js │ │ │ │ │ │ │ ├── console-output-handler.test.js │ │ │ │ │ │ │ ├── entry.test.js │ │ │ │ │ │ │ ├── formatter.test.js │ │ │ │ │ │ │ └── logger.test.js │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ └── registry.test.js │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ └── rules.test.js │ │ │ │ │ │ ├── modal │ │ │ │ │ │ ├── alert.test.js │ │ │ │ │ │ ├── confirm.test.js │ │ │ │ │ │ ├── modal.test.js │ │ │ │ │ │ └── prompt.test.js │ │ │ │ │ │ └── timeline │ │ │ │ │ │ └── timeline.test.js │ │ │ │ └── frontend │ │ │ │ │ └── js │ │ │ │ │ └── model │ │ │ │ │ └── messages.test.js │ │ │ │ ├── Vault │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── view │ │ │ │ │ └── payment │ │ │ │ │ └── method-renderer │ │ │ │ │ └── vault.test.js │ │ │ │ └── Wishlist │ │ │ │ └── view │ │ │ │ └── frontend │ │ │ │ └── web │ │ │ │ └── js │ │ │ │ └── add-to-wishlist.test.js │ │ │ └── lib │ │ │ ├── es6-collections.test.js │ │ │ └── mage │ │ │ ├── accordion.test.js │ │ │ ├── apply.test.js │ │ │ ├── backend │ │ │ ├── bootstrap.test.js │ │ │ ├── suggest.test.js │ │ │ └── tree-suggest.test.js │ │ │ ├── browser.test.js │ │ │ ├── calendar.test.js │ │ │ ├── collapsible.test.js │ │ │ ├── decorate.test.js │ │ │ ├── dropdown.test.js │ │ │ ├── form.test.js │ │ │ ├── gallery │ │ │ └── gallery.test.js │ │ │ ├── loader.test.js │ │ │ ├── menu.test.js │ │ │ ├── misc.test.js │ │ │ ├── multiselect.test.js │ │ │ ├── requirejs │ │ │ ├── mixins.test.js │ │ │ ├── static-jsbuild.test.js │ │ │ ├── static-text.test.js │ │ │ └── statistician.test.js │ │ │ ├── scripts.test.js │ │ │ ├── tabs.test.js │ │ │ ├── template.test.js │ │ │ ├── tinymceAdapter.test.js │ │ │ ├── translate-inline.test.js │ │ │ ├── translate.test.js │ │ │ ├── validation.test.js │ │ │ └── wysiwygAdapter.test.js │ ├── setup-integration │ │ ├── .gitignore │ │ ├── _files │ │ │ └── Magento │ │ │ │ ├── TestSetupDeclarationModule1 │ │ │ │ ├── Setup │ │ │ │ │ └── InstallSchema.php │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ └── module.xml │ │ │ │ ├── fixture │ │ │ │ │ ├── declarative_installer │ │ │ │ │ │ ├── column_modification.php │ │ │ │ │ │ ├── column_removal.php │ │ │ │ │ │ ├── constraint_modification.mariadb10.php │ │ │ │ │ │ ├── constraint_modification.mariadb106.php │ │ │ │ │ │ ├── constraint_modification.mysql8.php │ │ │ │ │ │ ├── constraint_modification.mysql829.php │ │ │ │ │ │ ├── constraint_modification.php │ │ │ │ │ │ ├── installation.php │ │ │ │ │ │ ├── rollback.mariadb106.php │ │ │ │ │ │ ├── rollback.mysql8.php │ │ │ │ │ │ ├── rollback.mysql829.php │ │ │ │ │ │ ├── rollback.php │ │ │ │ │ │ ├── table_removal.mariadb10.php │ │ │ │ │ │ ├── table_removal.mariadb106.php │ │ │ │ │ │ ├── table_removal.mysql8.php │ │ │ │ │ │ ├── table_removal.mysql829.php │ │ │ │ │ │ ├── table_removal.php │ │ │ │ │ │ ├── table_rename.mariadb106.php │ │ │ │ │ │ ├── table_rename.mysql8.php │ │ │ │ │ │ ├── table_rename.mysql829.php │ │ │ │ │ │ └── table_rename.php │ │ │ │ │ ├── dry_run_log.mariadb106.php │ │ │ │ │ ├── dry_run_log.mysql829.php │ │ │ │ │ ├── dry_run_log.php │ │ │ │ │ ├── dry_run_log_on_upgrade.php │ │ │ │ │ ├── foreign_key_interpreter_result.php │ │ │ │ │ └── valid_xml_revision_1.php │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── after_rollback │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── base_update │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── before_rollback │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── column_modifications │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── column_removals │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ ├── constraint_modifications │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ ├── drop_table │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── module.xml │ │ │ │ │ ├── fail_on_column_declaration │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── fail_on_unique_key_declaration │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── foreign_key_interpreter │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── index_to_disable │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── old_diff │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── old_diff_before │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── table_rename │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── table_rename_after │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── whitelist_upgrade │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── without_setup_version │ │ │ │ │ └── module.xml │ │ │ │ ├── TestSetupDeclarationModule2 │ │ │ │ ├── Setup │ │ │ │ │ └── InstallSchema.php │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ ├── fixture │ │ │ │ │ ├── shards.mariadb10.php │ │ │ │ │ ├── shards.mariadb106.php │ │ │ │ │ ├── shards.mysql8.php │ │ │ │ │ ├── shards.mysql829.php │ │ │ │ │ └── shards.php │ │ │ │ └── registration.php │ │ │ │ ├── TestSetupDeclarationModule3 │ │ │ │ ├── Setup │ │ │ │ │ ├── InstallData.php │ │ │ │ │ └── UpgradeData.php │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── all_patches_revision │ │ │ │ │ └── module.xml │ │ │ │ │ ├── cyclomatic_and_bic_revision │ │ │ │ │ ├── BicPatch.php │ │ │ │ │ ├── RefBicPatch.php │ │ │ │ │ └── module.xml │ │ │ │ │ ├── drop_table_with_external_dependency │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── first_patch_revision │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ └── module.xml │ │ │ │ │ ├── old_revision │ │ │ │ │ └── module.xml │ │ │ │ │ ├── patches_revision │ │ │ │ │ ├── IncrementalSomeIntegerPatch.php │ │ │ │ │ ├── LlNextChainPatch.php │ │ │ │ │ ├── NextChainPatch.php │ │ │ │ │ ├── ReferenceIncrementalSomeIntegerPatch.php │ │ │ │ │ └── ZFirstPatch.php │ │ │ │ │ └── without_setup_version │ │ │ │ │ └── module.xml │ │ │ │ ├── TestSetupDeclarationModule4 │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ └── module.xml │ │ │ │ ├── fixture │ │ │ │ │ └── safe_data_provider.php │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── remove_title_column │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── restore_title_column │ │ │ │ │ └── db_schema.xml │ │ │ │ ├── TestSetupDeclarationModule5 │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── module-without-version │ │ │ │ │ └── module.xml │ │ │ │ │ ├── old-scripts │ │ │ │ │ └── UpgradeData.php │ │ │ │ │ └── patches │ │ │ │ │ ├── SomePatch.php │ │ │ │ │ └── SomeSkippedPatch.php │ │ │ │ ├── TestSetupDeclarationModule6 │ │ │ │ ├── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── remove_fk_declaration │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ └── restore_fk_declaration_to_wl │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ ├── TestSetupDeclarationModule7 │ │ │ │ ├── Setup │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ └── UpgradeSchema.php │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── swap_with_declaration │ │ │ │ │ ├── SomePatch.php │ │ │ │ │ ├── SomeSkippedPatch.php │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── module.xml │ │ │ │ │ ├── us_to_us │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ ├── UpgradeSchema.php │ │ │ │ │ └── module.xml │ │ │ │ │ └── wl_remove_table │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ │ ├── disable_index_by_external_module │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ └── module.xml │ │ │ │ │ ├── disabling_tables │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── inconsistent_reference_type_definition │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── incosistence_reference_definition │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── invalid_auto_increment │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── invalid_primary_key │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── setup_install_with_converting │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ ├── UpgradeSchema.php │ │ │ │ │ └── module.xml │ │ │ │ │ ├── unpatterned_fk_name │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── whitelist_upgrade │ │ │ │ │ └── db_schema.xml │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ ├── etc │ │ │ │ └── module.xml │ │ │ │ ├── fixture │ │ │ │ └── declarative_installer │ │ │ │ │ ├── disabling_tables.mariadb10.php │ │ │ │ │ ├── disabling_tables.mariadb106.php │ │ │ │ │ ├── disabling_tables.mysql8.php │ │ │ │ │ ├── disabling_tables.mysql829.php │ │ │ │ │ └── disabling_tables.php │ │ │ │ ├── registration.php │ │ │ │ └── revisions │ │ │ │ ├── disabling_tables │ │ │ │ └── db_schema.xml │ │ │ │ └── setup_install_with_converting │ │ │ │ ├── InstallSchema.php │ │ │ │ ├── UpgradeSchema.php │ │ │ │ └── module.xml │ │ ├── allure │ │ │ └── allure.config.php │ │ ├── etc │ │ │ ├── config-global.php.dist │ │ │ ├── di │ │ │ │ └── preferences │ │ │ │ │ └── cli │ │ │ │ │ └── ce.php │ │ │ └── install-config-mysql.php.dist │ │ ├── framework │ │ │ ├── Magento │ │ │ │ └── TestFramework │ │ │ │ │ ├── Annotation │ │ │ │ │ ├── CopyModules.php │ │ │ │ │ ├── DataProviderFromFile.php │ │ │ │ │ ├── ReinstallInstance.php │ │ │ │ │ └── SchemaFixture.php │ │ │ │ │ ├── App │ │ │ │ │ └── AreaList.php │ │ │ │ │ ├── Bootstrap │ │ │ │ │ └── SetupDocBlock.php │ │ │ │ │ ├── Deploy │ │ │ │ │ ├── CliCommand.php │ │ │ │ │ ├── DescribeTable.php │ │ │ │ │ ├── ParametersHolder.php │ │ │ │ │ ├── ShardingConfig.php │ │ │ │ │ ├── TableData.php │ │ │ │ │ └── TestModuleManager.php │ │ │ │ │ ├── Mview │ │ │ │ │ └── DummyTriggerCleaner.php │ │ │ │ │ ├── SetupApplication.php │ │ │ │ │ ├── TestCase │ │ │ │ │ ├── MutableDataInterface.php │ │ │ │ │ └── SetupTestCase.php │ │ │ │ │ └── Workaround │ │ │ │ │ ├── CacheClean.php │ │ │ │ │ └── DeploymentConfig.php │ │ │ ├── autoload.php │ │ │ ├── bootstrap.php │ │ │ ├── removeTestModules.php │ │ │ └── tests │ │ │ │ └── unit │ │ │ │ ├── framework │ │ │ │ └── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ └── TestFramework │ │ │ │ └── Test │ │ │ │ └── Unit │ │ │ │ └── Annotation │ │ │ │ └── ReinstallInstanceTest.php │ │ ├── phpunit.xml.dist │ │ └── testsuite │ │ │ └── Magento │ │ │ ├── Developer │ │ │ ├── Console │ │ │ │ └── Command │ │ │ │ │ ├── SetupInstallTest.php │ │ │ │ │ ├── SetupUpgradeTest.php │ │ │ │ │ └── TablesWhitelistGenerateCommandTest.php │ │ │ └── _files │ │ │ │ ├── SetupInstall │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ │ └── db_schema.xml │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ │ └── db_schema.xml │ │ │ │ ├── SetupUpgrade │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ │ ├── db_schema_install.xml │ │ │ │ │ └── db_schema_upgrade.xml │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ │ ├── db_schema_install.xml │ │ │ │ │ └── db_schema_upgrade.xml │ │ │ │ └── WhitelistGenerate │ │ │ │ ├── TestSetupDeclarationModule1 │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── TestSetupDeclarationModule8 │ │ │ │ └── db_schema_whitelist.json │ │ │ └── Setup │ │ │ ├── BCMultiModuleTest.php │ │ │ ├── BCPatchTest.php │ │ │ ├── DataPatchInstallationTest.php │ │ │ ├── DeclarativeInstallerTest.php │ │ │ ├── DeclarativeSchemaBuilderTest.php │ │ │ ├── DiffOldSchemaTest.php │ │ │ ├── DryRunTest.php │ │ │ ├── SafeInstallerTest.php │ │ │ ├── SchemaReaderTest.php │ │ │ ├── ShardingTest.php │ │ │ └── ValidationRulesTest.php │ ├── static │ │ ├── .gitignore │ │ ├── allure │ │ │ └── allure.config.php │ │ ├── framework │ │ │ ├── Magento │ │ │ │ ├── CodeMessDetector │ │ │ │ │ ├── Rule │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ ├── AllPurposeAction.php │ │ │ │ │ │ │ └── CookieAndSessionMisuse.php │ │ │ │ │ ├── Test │ │ │ │ │ │ └── Unit │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ └── AllPurposeActionTest.php │ │ │ │ │ └── resources │ │ │ │ │ │ └── rulesets │ │ │ │ │ │ └── design.xml │ │ │ │ ├── PhpStan │ │ │ │ │ ├── Formatters │ │ │ │ │ │ └── FilteredErrorFormatter.php │ │ │ │ │ ├── Reflection │ │ │ │ │ │ └── Php │ │ │ │ │ │ │ ├── DataObjectClassReflectionExtension.php │ │ │ │ │ │ │ └── DataObjectMethodReflection.php │ │ │ │ │ └── autoload.php │ │ │ │ ├── TestFramework │ │ │ │ │ ├── CodingStandard │ │ │ │ │ │ ├── Tool │ │ │ │ │ │ │ ├── BlacklistInterface.php │ │ │ │ │ │ │ ├── CodeMessDetector.php │ │ │ │ │ │ │ ├── CodeSniffer.php │ │ │ │ │ │ │ ├── CodeSniffer │ │ │ │ │ │ │ │ └── Wrapper.php │ │ │ │ │ │ │ ├── CompatibilityInterface.php │ │ │ │ │ │ │ ├── CopyPasteDetector.php │ │ │ │ │ │ │ ├── ExtensionInterface.php │ │ │ │ │ │ │ └── PhpStan.php │ │ │ │ │ │ └── ToolInterface.php │ │ │ │ │ ├── Dependency │ │ │ │ │ │ ├── AnalyticsConfigRule.php │ │ │ │ │ │ ├── DbRule.php │ │ │ │ │ │ ├── DiRule.php │ │ │ │ │ │ ├── LayoutRule.php │ │ │ │ │ │ ├── PhpRule.php │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ └── ClassScanner.php │ │ │ │ │ │ ├── ReportsConfigRule.php │ │ │ │ │ │ ├── Route │ │ │ │ │ │ │ └── RouteMapper.php │ │ │ │ │ │ ├── RuleInterface.php │ │ │ │ │ │ └── VirtualType │ │ │ │ │ │ │ └── VirtualTypeMapper.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── NoSuchActionException.php │ │ │ │ │ ├── Inspection │ │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ └── WordsFinder.php │ │ │ │ │ ├── Integrity │ │ │ │ │ │ ├── AbstractConfig.php │ │ │ │ │ │ ├── Library │ │ │ │ │ │ │ ├── Injectable.php │ │ │ │ │ │ │ └── PhpParser │ │ │ │ │ │ │ │ ├── DependenciesCollectorInterface.php │ │ │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ │ │ │ ├── StaticCalls.php │ │ │ │ │ │ │ │ ├── Throws.php │ │ │ │ │ │ │ │ ├── Tokens.php │ │ │ │ │ │ │ │ └── Uses.php │ │ │ │ │ │ └── PluginValidator.php │ │ │ │ │ └── Utility │ │ │ │ │ │ ├── AddedFiles.php │ │ │ │ │ │ ├── AutogeneratedClassNotInConstructorFinder.php │ │ │ │ │ │ ├── ChangedFiles.php │ │ │ │ │ │ ├── ChildrenClassesSearch.php │ │ │ │ │ │ ├── ClassNameExtractor.php │ │ │ │ │ │ ├── CodeCheck.php │ │ │ │ │ │ ├── File │ │ │ │ │ │ └── RegexIteratorFactory.php │ │ │ │ │ │ ├── FilesSearch.php │ │ │ │ │ │ └── FunctionDetector.php │ │ │ │ └── ruleset.xml │ │ │ ├── autoload.php │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ │ └── unit │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ ├── PhpStan │ │ │ │ ├── Formatters │ │ │ │ │ ├── FilteredErrorFormatterTest.php │ │ │ │ │ └── Fixtures │ │ │ │ │ │ ├── ClassWithIgnoreAnnotation.php │ │ │ │ │ │ └── ClassWithoutIgnoreAnnotation.php │ │ │ │ └── Reflection │ │ │ │ │ └── DataObject │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ClassWithCorrectUsageOfDataObject.php │ │ │ │ │ ├── ClassWithIncorrectUsageOfDataObject.php │ │ │ │ │ ├── ClassWithSessionManagerUsage.php │ │ │ │ │ └── config.neon │ │ │ │ │ └── MagicMethodsTest.php │ │ │ │ └── TestFramework │ │ │ │ ├── CodingStandard │ │ │ │ └── Tool │ │ │ │ │ ├── CodeMessDetectorTest.php │ │ │ │ │ ├── CodeSniffer │ │ │ │ │ └── WrapperTest.php │ │ │ │ │ └── CodeSnifferTest.php │ │ │ │ ├── Dependency │ │ │ │ ├── DbRuleTest.php │ │ │ │ ├── DiRuleTest.php │ │ │ │ ├── LayoutRuleTest.php │ │ │ │ ├── PhpRuleTest.php │ │ │ │ ├── VirtualType │ │ │ │ │ ├── VirtualTypeMapperTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── di.xml │ │ │ │ │ │ └── di.xml │ │ │ │ └── _files │ │ │ │ │ ├── di_external_dependency.xml │ │ │ │ │ ├── di_in_module_dependency.xml │ │ │ │ │ ├── di_no_dependency.xml │ │ │ │ │ ├── di_virtual_dependency.xml │ │ │ │ │ ├── layout_handle.xml │ │ │ │ │ ├── layout_handle_parent.xml │ │ │ │ │ ├── layout_handle_update.xml │ │ │ │ │ └── layout_reference.xml │ │ │ │ ├── Inspection │ │ │ │ ├── WordsFinderTest.php │ │ │ │ └── _files │ │ │ │ │ ├── broken_config.xml │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── config_additional.xml │ │ │ │ │ ├── empty_whitelist_path.xml │ │ │ │ │ ├── empty_words_config.xml │ │ │ │ │ └── words_finder │ │ │ │ │ ├── buffy.php │ │ │ │ │ ├── buffy.zip │ │ │ │ │ ├── interview_with_the_vampire.php │ │ │ │ │ ├── interview_with_the_vampire.zip │ │ │ │ │ ├── self_tested_config.xml │ │ │ │ │ └── twilight │ │ │ │ │ ├── eclipse.php │ │ │ │ │ └── newmoon.php │ │ │ │ ├── Integrity │ │ │ │ └── Library │ │ │ │ │ ├── InjectableTest.php │ │ │ │ │ ├── PhpParser │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ ├── StaticCallsTest.php │ │ │ │ │ ├── ThrowsTest.php │ │ │ │ │ ├── TokensTest.php │ │ │ │ │ └── UsesTest.php │ │ │ │ │ └── _files │ │ │ │ │ └── DummyInjectableClass.php │ │ │ │ └── Utility │ │ │ │ ├── AutogeneratedClassNotInConstructorFinderTest.php │ │ │ │ ├── Bar.php │ │ │ │ ├── ChildrenClassesSearch │ │ │ │ ├── A.php │ │ │ │ ├── B.php │ │ │ │ ├── C.php │ │ │ │ ├── D.php │ │ │ │ ├── E.php │ │ │ │ ├── F.php │ │ │ │ └── ZInterface.php │ │ │ │ ├── ChildrenClassesSearchTest.php │ │ │ │ ├── ClassNameExtractorTest.php │ │ │ │ ├── CodeCheckTest.php │ │ │ │ ├── FilesSearchTest.php │ │ │ │ ├── Foo.php │ │ │ │ ├── FunctionDetectorTest.php │ │ │ │ ├── PartialNamespace │ │ │ │ └── Bar.php │ │ │ │ └── _files │ │ │ │ ├── changed_files_some_name_test.txt │ │ │ │ ├── class_implements_interface.txt │ │ │ │ ├── class_name_in_namespace_and_variable_name.txt │ │ │ │ ├── class_with_comment.txt │ │ │ │ ├── class_with_namespace.txt │ │ │ │ ├── class_without_namespace.txt │ │ │ │ ├── create_new_instance.txt │ │ │ │ ├── create_new_instance2.txt │ │ │ │ ├── create_new_instance3.txt │ │ │ │ ├── extends.txt │ │ │ │ ├── extends2.txt │ │ │ │ ├── extra_whitespaces.txt │ │ │ │ ├── implements.txt │ │ │ │ ├── implements2.txt │ │ │ │ ├── implements_keyword_on_different_line.txt │ │ │ │ ├── missing_class_keyword.txt │ │ │ │ ├── test.txt │ │ │ │ ├── use.txt │ │ │ │ └── use2.txt │ │ ├── get_github_changes.php │ │ ├── phpunit-all.xml.dist │ │ ├── phpunit.xml.dist │ │ └── testsuite │ │ │ └── Magento │ │ │ └── Test │ │ │ ├── GraphQl │ │ │ └── LiveCodeTest.php │ │ │ ├── Html │ │ │ ├── LiveCodeTest.php │ │ │ └── _files │ │ │ │ └── whitelist │ │ │ │ └── common.txt │ │ │ ├── Integrity │ │ │ ├── App │ │ │ │ └── Language │ │ │ │ │ ├── CircularDependencyTest.php │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ ├── TranslationFiles.php │ │ │ │ │ ├── TranslationFilesTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── known_invalid.xml │ │ │ │ │ └── known_valid.xml │ │ │ ├── CircularDependencyTest.php │ │ │ ├── ClassesTest.php │ │ │ ├── ComposerLockTest.php │ │ │ ├── ComposerTest.php │ │ │ ├── ConfigTest.php │ │ │ ├── DBSchema │ │ │ │ ├── PrimaryKeyTest.php │ │ │ │ └── _files │ │ │ │ │ └── primary_key_exemption_list.txt │ │ │ ├── DeclarativeDependencyTest.php │ │ │ ├── Dependency │ │ │ │ ├── Converter.php │ │ │ │ ├── DeclarativeSchemaDependencyProvider.php │ │ │ │ ├── DependencyProvider.php │ │ │ │ ├── GraphQlSchemaDependencyProvider.php │ │ │ │ ├── SchemaLocator.php │ │ │ │ └── WebapiFileResolver.php │ │ │ ├── DependencyTest.php │ │ │ ├── Di │ │ │ │ └── CompilerTest.php │ │ │ ├── GraphQlDependencyTest.php │ │ │ ├── Layout │ │ │ │ ├── BlockNamesTest.php │ │ │ │ ├── BlocksTest.php │ │ │ │ ├── HandlesTest.php │ │ │ │ ├── TemplatesTest.php │ │ │ │ └── ThemeHandlesTest.php │ │ │ ├── Library │ │ │ │ ├── DependencyTest.php │ │ │ │ └── _files │ │ │ │ │ └── blacklist.txt │ │ │ ├── Magento │ │ │ │ ├── Backend │ │ │ │ │ ├── ControllerAclTest.php │ │ │ │ │ ├── SystemConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── controller_acl_test_whitelist_ce.txt │ │ │ │ ├── Core │ │ │ │ │ └── Model │ │ │ │ │ │ └── Fieldset │ │ │ │ │ │ ├── FieldsetConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ ├── fieldset_file.xml │ │ │ │ │ │ └── invalid_fieldset.xml │ │ │ │ ├── Framework │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── ExtensibleInterfacesTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── ExtensibleInterfacesTest │ │ │ │ │ │ │ └── blacklist_ce.txt │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── invalidCacheConfigXmlArray.php │ │ │ │ │ │ │ └── valid_cache_config.xml │ │ │ │ │ └── Search │ │ │ │ │ │ ├── RequestConfigTest.php │ │ │ │ │ │ ├── SearchEngineConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── request │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ ├── invalid_partial.xml │ │ │ │ │ │ ├── valid.xml │ │ │ │ │ │ └── valid_partial.xml │ │ │ │ │ │ └── search_engine │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ └── valid.xml │ │ │ │ ├── Indexer │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ ├── valid.xml │ │ │ │ │ │ └── valid_partial.xml │ │ │ │ ├── Payment │ │ │ │ │ ├── Config │ │ │ │ │ │ └── ReferentialTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── invalid_payment.xml │ │ │ │ │ │ ├── invalid_payment_partial.xml │ │ │ │ │ │ ├── payment.xml │ │ │ │ │ │ └── payment_partial.xml │ │ │ │ ├── Persistent │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── invalid_persistent.xml │ │ │ │ │ │ └── valid_persistent.xml │ │ │ │ ├── Webapi │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── invalid_webapi.xml │ │ │ │ │ │ ├── partial_invalid_webapi.xml │ │ │ │ │ │ ├── partial_webapi.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ └── Widget │ │ │ │ │ ├── WidgetConfigTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── invalid_widget.xml │ │ │ │ │ ├── widget.xml │ │ │ │ │ └── widget_file.xml │ │ │ ├── ObserverImplementationTest.php │ │ │ ├── ParameterizedFixtureTest.php │ │ │ ├── Phrase │ │ │ │ ├── AbstractTestCase.php │ │ │ │ ├── ArgumentsTest.php │ │ │ │ └── Legacy │ │ │ │ │ └── SignatureTest.php │ │ │ ├── PublicCodeTest.php │ │ │ ├── Readme │ │ │ │ ├── ReadmeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── blacklist │ │ │ │ │ └── ce.txt │ │ │ │ │ └── scan_list.txt │ │ │ ├── TestPlacementTest.php │ │ │ ├── Xml │ │ │ │ └── SchemaTest.php │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ ├── composer_module_names.txt │ │ │ │ ├── exception_hierarchy.txt │ │ │ │ ├── external_dependency │ │ │ │ │ └── ce.php │ │ │ │ ├── observers.txt │ │ │ │ ├── reference.txt │ │ │ │ └── undeclared_dependency │ │ │ │ │ └── ce.php │ │ │ │ ├── dependency_test │ │ │ │ └── whitelist │ │ │ │ │ ├── redundant_dependencies_security.php │ │ │ │ │ ├── redundant_dependencies_webapi.php │ │ │ │ │ └── routes_ce.php │ │ │ │ ├── extension_dependencies_test │ │ │ │ ├── allowed_dependencies │ │ │ │ │ └── ce.php │ │ │ │ └── extension_conflicts │ │ │ │ │ └── ce.php │ │ │ │ └── whitelist │ │ │ │ └── public_code.txt │ │ │ ├── Js │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ └── magento.txt │ │ │ │ └── whitelist │ │ │ │ └── magento.txt │ │ │ ├── Legacy │ │ │ ├── CodingStandardsIgnoreAnnotationUsageTest.php │ │ │ ├── LegacyFixtureTest.php │ │ │ ├── LibraryLocationTest.php │ │ │ ├── Magento │ │ │ │ └── Framework │ │ │ │ │ └── App │ │ │ │ │ └── Action │ │ │ │ │ └── AbstractActionTest.php │ │ │ ├── ModuleDBChangeTest.php │ │ │ ├── ObsoleteCodeTest.php │ │ │ ├── ObsoleteThemeLocalXmlTest.php │ │ │ ├── WordsTest.php │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ └── obsolete_mage.php │ │ │ │ ├── obsolete_classes.php │ │ │ │ ├── obsolete_config_nodes.php │ │ │ │ ├── obsolete_constants.php │ │ │ │ ├── obsolete_methods.php │ │ │ │ ├── obsolete_namespaces.php │ │ │ │ ├── obsolete_paths.php │ │ │ │ ├── obsolete_properties.php │ │ │ │ ├── security │ │ │ │ └── whitelist.txt │ │ │ │ └── words_ce.xml │ │ │ ├── Less │ │ │ ├── LiveCodeTest.php │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ └── old.txt │ │ │ │ └── whitelist │ │ │ │ └── common.txt │ │ │ ├── Php │ │ │ ├── LiveCodeTest.php │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ └── strict_type.txt │ │ │ │ ├── phpcpd │ │ │ │ └── blacklist │ │ │ │ │ ├── common.txt │ │ │ │ │ └── inventory.txt │ │ │ │ ├── phpmd │ │ │ │ └── ruleset.xml │ │ │ │ ├── phpstan │ │ │ │ ├── blacklist │ │ │ │ │ └── common.txt │ │ │ │ └── phpstan.neon │ │ │ │ └── whitelist │ │ │ │ └── common.txt │ │ │ ├── Tools │ │ │ └── Composer │ │ │ │ └── RootComposerMappingTest.php │ │ │ ├── Xml │ │ │ ├── LiveCodeTest.php │ │ │ └── _files │ │ │ │ └── whitelist │ │ │ │ └── common.txt │ │ │ └── _files │ │ │ └── .gitignore │ ├── unit │ │ ├── .gitignore │ │ ├── allure │ │ │ └── allure.config.php │ │ ├── framework │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ │ ├── phpunit.xml.dist │ │ └── tmp │ │ │ └── .gitignore │ └── utils │ │ └── phpunitGroupConfig.php └── tools │ ├── bootstrap.php │ ├── dynamicReturnTypeMeta.json │ └── grunt │ ├── assets │ └── legacy-build │ │ └── shim.js │ ├── configs │ ├── clean.js │ ├── combo.js │ ├── concat.json │ ├── cssmin.json │ ├── eslint.json │ ├── exec.js │ ├── imagemin.js │ ├── less.js │ ├── local-themes.js │ ├── mage-minify.json │ ├── path.js │ ├── replace.js │ ├── styledocco.json │ ├── themes.js │ ├── usebanner.js │ └── watch.js │ ├── tasks │ ├── black-list-generator.js │ ├── clean-black-list.js │ ├── deploy.js │ ├── mage-minify.js │ └── static.js │ └── tools │ ├── collect-validation-files.js │ ├── files-router.js │ └── fs-tools.js ├── docker-compose.yml ├── docker-sync.yml ├── fixCssMapFiles.sh ├── generated └── .htaccess ├── m2-hotfxies └── gallery-zoom-issue.patch ├── mutagen.sh ├── n98-magerun2.phar ├── nginx.conf.sample ├── package.json.sample ├── php.dev.ini ├── pub ├── .htaccess ├── .user.ini ├── cron.php ├── docs ├── errors │ ├── .htaccess │ ├── 404.php │ ├── 503.php │ ├── default │ │ ├── 404.phtml │ │ ├── 503.phtml │ │ ├── css │ │ │ └── styles.css │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── i_msg-error.gif │ │ │ ├── i_msg-note.gif │ │ │ ├── i_msg-success.gif │ │ │ └── logo.gif │ │ ├── nocache.phtml │ │ ├── page.phtml │ │ └── report.phtml │ ├── design.xml │ ├── local.xml.sample │ ├── noCache.php │ ├── processor.php │ ├── processorFactory.php │ └── report.php ├── get.php ├── health_check.php ├── index.php ├── media │ ├── .htaccess │ ├── custom_options │ │ └── .htaccess │ ├── customer │ │ └── .htaccess │ ├── customer_address │ │ └── .htaccess │ ├── downloadable │ │ └── .htaccess │ ├── import │ │ └── .htaccess │ ├── sitemap │ │ └── .htaccess │ └── theme_customization │ │ └── .htaccess ├── opt │ └── magento │ │ └── var │ │ └── resource_config.json ├── static.php └── static │ └── .htaccess ├── qodana.yaml ├── var └── .htaccess └── vendor └── .htaccess /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.htaccess -------------------------------------------------------------------------------- /.htaccess.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.htaccess.sample -------------------------------------------------------------------------------- /.magento.app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.magento.app.yaml -------------------------------------------------------------------------------- /.magento.env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.magento.env.yaml -------------------------------------------------------------------------------- /.magento/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.magento/routes.yaml -------------------------------------------------------------------------------- /.magento/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.magento/services.yaml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/.user.ini -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/LICENSE_AFL.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/bootstrap.php -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/Block/Html/Head/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/Block/Html/Head/Config.php -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/Model/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/Model/FileManager.php -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/etc/di.xml -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/etc/module.xml -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/registration.php -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /app/code/Magento/BundleConfig/view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/Magento/BundleConfig/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Api/Data/BrazilCountyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Api/Data/BrazilCountyInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Helper/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Helper/Address.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Model/Clients/ViaCEP/ViaCEPClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Model/Clients/ViaCEP/ViaCEPClient.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Model/Data/BrazilCounty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Model/Data/BrazilCounty.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Model/Data/BrazilCountyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Model/Data/BrazilCountyRepository.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Model/Resolver/BrazilCounties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Model/Resolver/BrazilCounties.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/Model/ResourceModel/BrazilCounty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/Model/ResourceModel/BrazilCounty.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/README.md -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/db_schema.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/etc/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/etc/schema.graphqls -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/view/frontend/web/js/cpfCnpjField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/view/frontend/web/js/cpfCnpjField.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Brasil/view/frontend/web/js/validation-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Brasil/view/frontend/web/js/validation-mixin.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Api/Adapters/PostcodeClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Api/Adapters/PostcodeClientInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Api/Objects/AddressObjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Api/Objects/AddressObjectInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Api/PostcodeSearchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Api/PostcodeSearchInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Helper/Config.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Model/Adapters/PostcodeClientAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Model/Adapters/PostcodeClientAdapter.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Model/Api/PostcodeSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Model/Api/PostcodeSearch.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Model/CacheClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Model/CacheClient.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Model/Config/PostcodeAdapters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Model/Config/PostcodeAdapters.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/Model/DataObjects/AddressObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/Model/DataObjects/AddressObject.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/README.md -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/etc/webapi.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/adminhtml/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/adminhtml/web/css/source/_module.less -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.eot -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.svg -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.ttf -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/adminhtml/web/fonts/theitnerd.woff -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/inputMask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/inputMask.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/lib/jquery.mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/lib/jquery.mask.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/lib/postcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/lib/postcode.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/model/postcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/model/postcode.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/postcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/postcode.js -------------------------------------------------------------------------------- /app/code/TheITNerd/Core/view/frontend/web/js/view/postcodeSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Core/view/frontend/web/js/view/postcodeSearch.js -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/Model/AbstractModel.php -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/Model/EntityUseDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/Model/EntityUseDefault.php -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/Model/ResourceModel/Attribute/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/Model/ResourceModel/Attribute/Collection.php -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/Ui/DataProvider/Form/Modifier/Eav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/Ui/DataProvider/Form/Modifier/Eav.php -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/EAV/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/EAV/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/Helper/Config.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/Plugin/HttpResponsePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/Plugin/HttpResponsePlugin.php -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/README.md -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/etc/config.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/etc/frontend/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/Performance/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/Performance/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Api/Data/SizeGuideInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Api/Data/SizeGuideInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Api/SizeGuideRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Api/SizeGuideRepositoryInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Block/Catalog/Product/View/SizeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Block/Catalog/Product/View/SizeGuide.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/COPYING.txt -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Edit.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Index.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Controller/Adminhtml/SizeGuide/Save.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Helper/Config.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/LICENSE.txt -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/Data/SizeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/Data/SizeGuide.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/ResourceModel/SizeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/ResourceModel/SizeGuide.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/SizeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/SizeGuide.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/SizeGuide/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/SizeGuide/DataProvider.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/SizeGuide/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/SizeGuide/Image.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Model/SizeGuideRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Model/SizeGuideRepository.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/README.md -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Setup/SizeGuideSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Setup/SizeGuideSetup.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Ui/Component/DataProvider/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Ui/Component/DataProvider/Document.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/Ui/Component/Listing/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/Ui/Component/Listing/DataProvider.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/db_schema.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/etc/webapi.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SizeGuide/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SizeGuide/todo.md -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Api/OauthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Api/OauthInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Controller/Auth/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Controller/Auth/Callback.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Helper/Config.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Model/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Model/OAuth.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Model/OAuth/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Model/OAuth/Facebook.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/Model/OAuth/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/Model/OAuth/Google.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/config.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/frontend/routes.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/SocialLogin/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/SocialLogin/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Api/PDPEstimateShippingMethodsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Api/PDPEstimateShippingMethodsInterface.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Block/Product/PriceInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Block/Product/PriceInfo.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Block/Product/PriceInfoPDP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Block/Product/PriceInfoPDP.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Helper/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Helper/Customer.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Helper/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Helper/Gallery.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Helper/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Helper/Product.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Helper/Social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Helper/Social.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Model/Api/PDPEstimateShippingMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Model/Api/PDPEstimateShippingMethods.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Model/Config/Source/LinkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Model/Config/Source/LinkType.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Model/Config/Source/Magnifier/EventType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Model/Config/Source/Magnifier/EventType.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/Model/Config/Source/Magnifier/Mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/Model/Config/Source/Magnifier/Mode.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/composer.json -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/acl.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/config.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/di.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/module.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/etc/webapi.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/registration.php -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/css/source/_module.less -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.eot -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.svg -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.ttf -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.woff -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/fonts/social_icons.woff2 -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/js/product/relatedButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/js/product/relatedButton.js -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/js/product/secondImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/js/product/secondImage.js -------------------------------------------------------------------------------- /app/code/TheITNerd/UX/view/frontend/web/js/qtyButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/code/TheITNerd/UX/view/frontend/web/js/qtyButtons.js -------------------------------------------------------------------------------- /app/etc/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/etc/config.php -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/LICENSE -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/README.md -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/composer.json -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/github_contributions.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/language.xml -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/pt_BR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/pt_BR.csv -------------------------------------------------------------------------------- /app/i18n/origenes/pt_br/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/app/i18n/origenes/pt_br/registration.php -------------------------------------------------------------------------------- /auth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/auth.json.sample -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/composer.lock -------------------------------------------------------------------------------- /dev/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/.htaccess -------------------------------------------------------------------------------- /dev/tests/.gitignore: -------------------------------------------------------------------------------- 1 | .phpunit.result.cache 2 | -------------------------------------------------------------------------------- /dev/tests/acceptance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/.gitignore -------------------------------------------------------------------------------- /dev/tests/acceptance/.htaccess.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/.htaccess.sample -------------------------------------------------------------------------------- /dev/tests/acceptance/staticRuleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/staticRuleset.json -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_bootstrap.php -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/BB-Products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/BB-Products.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/BB-ProductsWorking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/BB-ProductsWorking.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/LargerThan2MB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/LargerThan2MB.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/adobe-base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/adobe-base.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/adobe-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/adobe-small.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/adobe-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/adobe-thumb.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/bmp.bmp -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/catalog_import_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/catalog_import_products.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/catalog_product_err_img.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/catalog_product_err_img.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/catalog_product_import_bundle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/catalog_product_import_bundle.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/catalog_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/catalog_products.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/empty.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/gif.gif -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/ico.ico -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/importSpecChars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/importSpecChars.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_bundle_product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_bundle_product.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_configurable_product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_configurable_product.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_grouped_product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_grouped_product.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_productsoftwostoresdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_productsoftwostoresdata.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_simple_product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_simple_product.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_simple_product_with_image.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_simple_product_with_image.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_tax_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_tax_rates.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/import_updated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/import_updated.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/jpg.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/large.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/lorem_ipsum.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/lorem_ipsum.docx -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/lorem_ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/lorem_ipsum.txt -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/m-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/m-logo.gif -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/m.agento-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/m.agento-logo.png -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento-again.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento-again.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento-logo.png -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento-logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento-logo_2.png -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento2.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magento3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magento3.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/magentoStage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/magentoStage.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/medium.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/not-a.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/png.png -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/prepared-for-sample-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/prepared-for-sample-data.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/simpleProductUpdate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/simpleProductUpdate.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/small.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/svg.svg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/table_rate_30895.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/table_rate_30895.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/tablerates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/tablerates.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/test-IMAGE_123,456.789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/test-IMAGE_123,456.789.jpg -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_data/usa_tablerates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_data/usa_tablerates.csv -------------------------------------------------------------------------------- /dev/tests/acceptance/tests/_suite/suite.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/acceptance/tests/_suite/suite.xml.sample -------------------------------------------------------------------------------- /dev/tests/api-functional/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xml 2 | /var/ 3 | /config/*.php 4 | -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/etc/config.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule1/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule1/registration.php -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule2/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule2/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule2/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule2/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule2/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule2/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule2/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule2/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule2/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule2/registration.php -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule3/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule3/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule3/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule3/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule3/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule3/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule3/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule3/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule3/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule3/registration.php -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule4/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule4/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule4/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule4/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule4/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule4/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule4/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule4/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule4/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule4/registration.php -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule5/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule5/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule5/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule5/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule5/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule5/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule5/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule5/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModule5/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModule5/registration.php -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleFedex/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleFedex/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/acl.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/webapi.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleUps/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleUps/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleUps/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleUps/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleUsps/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleUsps/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/_files/Magento/TestModuleUsps/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/_files/Magento/TestModuleUsps/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/api-functional/allure/allure.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/allure/allure.config.php -------------------------------------------------------------------------------- /dev/tests/api-functional/config/config-global.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/config/config-global.php.dist -------------------------------------------------------------------------------- /dev/tests/api-functional/config/install-config-mysql.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/config/install-config-mysql.php.dist -------------------------------------------------------------------------------- /dev/tests/api-functional/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/framework/autoload.php -------------------------------------------------------------------------------- /dev/tests/api-functional/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/api-functional/isolate_gql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/isolate_gql.txt -------------------------------------------------------------------------------- /dev/tests/api-functional/isolate_rest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/isolate_rest.txt -------------------------------------------------------------------------------- /dev/tests/api-functional/phpunit_graphql.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/phpunit_graphql.xml.dist -------------------------------------------------------------------------------- /dev/tests/api-functional/phpunit_rest.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/phpunit_rest.xml.dist -------------------------------------------------------------------------------- /dev/tests/api-functional/phpunit_soap.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/phpunit_soap.xml.dist -------------------------------------------------------------------------------- /dev/tests/api-functional/testsuite/Magento/Search/Api/SearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/testsuite/Magento/Search/Api/SearchTest.php -------------------------------------------------------------------------------- /dev/tests/api-functional/testsuite/Magento/WebApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/api-functional/testsuite/Magento/WebApiTest.php -------------------------------------------------------------------------------- /dev/tests/config/AllureConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/config/AllureConfig.php -------------------------------------------------------------------------------- /dev/tests/error_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/error_handler.php -------------------------------------------------------------------------------- /dev/tests/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/.gitignore -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleCspUtil/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleCspUtil/composer.json -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleCspUtil/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleCspUtil/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleMview/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleMview/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleMview/etc/mview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleMview/etc/mview.xml -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleMview/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleMview/registration.php -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleMysqlMq/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleMysqlMq/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleMysqlMq/etc/queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleMysqlMq/etc/queue.xml -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleSample/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleSample/composer.json -------------------------------------------------------------------------------- /dev/tests/integration/_files/Magento/TestModuleSample/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/_files/Magento/TestModuleSample/etc/module.xml -------------------------------------------------------------------------------- /dev/tests/integration/allure/allure.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/allure/allure.config.php -------------------------------------------------------------------------------- /dev/tests/integration/bin/magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/bin/magento -------------------------------------------------------------------------------- /dev/tests/integration/etc/config-global.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/etc/config-global.php.dist -------------------------------------------------------------------------------- /dev/tests/integration/etc/di/persistedInstances/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/etc/di/persistedInstances/ce.php -------------------------------------------------------------------------------- /dev/tests/integration/etc/di/preferences/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/etc/di/preferences/ce.php -------------------------------------------------------------------------------- /dev/tests/integration/etc/install-config-mysql.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/etc/install-config-mysql.php.dist -------------------------------------------------------------------------------- /dev/tests/integration/etc/post-install-setup-command-config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/etc/post-install-setup-command-config.php.dist -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/App/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/App/Config.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/App/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/App/State.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Application.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Bootstrap.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Config.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Db/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Db/Sequence.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Entity.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Helper/Amqp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Helper/Amqp.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Helper/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Helper/Api.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Helper/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Helper/Curl.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Helper/Eav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Helper/Eav.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/MemoryLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/MemoryLimit.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Request.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/Response.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/SuiteLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/SuiteLoader.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/Magento/TestFramework/View/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/Magento/TestFramework/View/Layout.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/autoload.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/deployTestModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/deployTestModules.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/tests/unit/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/tests/unit/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/integration/framework/tests/unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/framework/tests/unit/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/0: -------------------------------------------------------------------------------- 1 | File with the name "0" 2 | -------------------------------------------------------------------------------- /dev/tests/integration/isolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/isolate.txt -------------------------------------------------------------------------------- /dev/tests/integration/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Analytics/Cron/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Analytics/Cron/UpdateTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/App/RouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/App/RouterTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Block/WidgetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Block/WidgetTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Model/AuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Model/AuthTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Model/SessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Model/SessionTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Backend/Model/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Backend/Model/UrlTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Bundle/Model/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Bundle/Model/ProductTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Bundle/_files/product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Bundle/_files/product.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Bundle/_files/product_1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Bundle/_files/product_1.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Captcha/_files/dummy_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Captcha/_files/dummy_user.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/Helper/OutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/Helper/OutputTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/Model/DesignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/Model/DesignTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/Model/ProductTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/WidgetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/WidgetTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/_files/categories.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/_files/category.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/magento_empty.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/_files/products.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/disable_product.csv: -------------------------------------------------------------------------------- 1 | "sku", "product_online" 2 | "simple", "0" 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/enable_product.csv: -------------------------------------------------------------------------------- 1 | "sku", "product_online" 2 | "simple", "1" 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_error.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/Block/CartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/Block/CartTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/Model/CartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/Model/CartTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/_files/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/_files/cart.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/_files/customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/_files/customers.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/_files/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/_files/orders.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/_files/products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/_files/products.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Checkout/_files/quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Checkout/_files/quote.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Block/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Block/BlockTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Block/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Block/PageTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Controller/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Controller/PageTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Controller/RouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Controller/RouterTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Fixtures/page_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Fixtures/page_list.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Helper/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Helper/PageTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/block.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/block_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/block_rollback.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/blocks.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/linked_media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/linked_media.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/noroute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/noroute.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/pages.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/pages_rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/pages_rollback.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/test.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cms/_files/test.swf -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cms/_files/text.txt: -------------------------------------------------------------------------------- 1 | just a text 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Config/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Config/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Config/_files/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Config/_files/config.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Config/_files/config_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Config/_files/config_data.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Config/_files/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Config/_files/env.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Config/_files/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Config/_files/system.xml -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Contact/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Contact/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Contact/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Contact/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Cron/Model/ScheduleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Cron/Model/ScheduleTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Csp/CachedBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Csp/CachedBlockTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Csp/CspAwareActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Csp/CspAwareActionTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Csp/CspTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Csp/CspTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Csp/CspUtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Csp/CspUtilTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Csp/Helper/InlineUtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Csp/Helper/InlineUtilTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Customer/Helper/ViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Customer/Helper/ViewTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Customer/Model/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Customer/Model/FormTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Customer/Model/GroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Customer/Model/GroupTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Customer/_files/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Customer/_files/customer.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Customer/_files/quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Customer/_files/quote.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_to_import_with_one_additional_column.csv: -------------------------------------------------------------------------------- 1 | email,_website,firstname 2 | CharlesTAlston@teleworm.us,base,Jhon 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/DeployTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/DeployTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/Vendor/parent/web/css/source/_extend.less: -------------------------------------------------------------------------------- 1 | @import '_extend-child.less'; 2 | 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/config.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/lib/web/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/lib/web/test.js -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/map.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/theme.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/theme.xml -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/theme.xml -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/theme.xml -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Developer/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Developer/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Dhl/Model/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Dhl/Model/CarrierTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Directory/Block/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Directory/Block/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Directory/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Directory/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Downloadable/Controller/Adminhtml/_files/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Eav/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Eav/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Eav/Model/TypeLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Eav/Model/TypeLocatorTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Eav/Setup/EavSetupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Eav/Setup/EavSetupTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Fedex/Model/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Fedex/Model/CarrierTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/AreaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/App/AreaTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_az/a.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_az/b.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | four,4 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_az/1.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | one,1.0 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/1.csv: -------------------------------------------------------------------------------- 1 | one,1.0 2 | five,5.0 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/2.csv: -------------------------------------------------------------------------------- 1 | six,6.0 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/1.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | one,1.0 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/1.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/1.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/one.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Archive/ZipTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/Archive/ZipTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Archive/_files/test.txt: -------------------------------------------------------------------------------- 1 | test file 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Backup/DbTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/Backup/DbTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Cache/CoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/Cache/CoreTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Module/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Module/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Second/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/2.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/File/NameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/File/NameTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/File/SizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/File/SizeTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/baz/file_one.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/file_two.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/file_three.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/popup.csv: -------------------------------------------------------------------------------- 1 | var myData = 5; -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/HTTP/HeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/HTTP/HeaderTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Image/_files/empty.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/Image/_files/notanimage.txt: -------------------------------------------------------------------------------- 1 | Not an image. 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/ProfilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/ProfilerTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/TranslateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/TranslateTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/UrlTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/i18n/en_US.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/i18n/en_US.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/GoogleGtag/Block/GaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/GoogleGtag/Block/GaTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/_files/grouped_product_children_in_stock.csv: -------------------------------------------------------------------------------- 1 | sku,qty,is_in_stock 2 | simple,10,1 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/test.txt: -------------------------------------------------------------------------------- 1 | Import test file 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/IntegrationTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/MediaStorage/_files/test_file.html: -------------------------------------------------------------------------------- 1 | test data 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/MemoryUsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/MemoryUsageTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/MysqlMq/_files/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/MysqlMq/_files/messages.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/MysqlMq/_files/queues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/MysqlMq/_files/queues.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Newsletter/_files/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Newsletter/_files/queue.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Payment/Block/InfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Payment/Block/InfoTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Payment/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Payment/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/Model/Api/NvpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/Model/Api/NvpTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/Model/IpnTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/Model/IpnTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/_files/ipn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_failed.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_refund.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Phpserver/PhpserverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Phpserver/PhpserverTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Reports/_files/orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Reports/_files/orders.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Review/Block/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Review/Block/FormTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Review/Block/ViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Review/Block/ViewTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Review/_files/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Review/_files/config.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Review/_files/review_xss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Review/_files/review_xss.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Review/_files/reviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Review/_files/reviews.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/Helper/AdminTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/Helper/AdminTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/Helper/ReorderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/Helper/ReorderTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/address.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/address_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/address_data.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/address_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/address_list.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/invoice.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order_closed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order_closed.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order_info.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order_new.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/order_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/order_status.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/quote.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/quotes.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/shipment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/shipment.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sales/_files/transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sales/_files/transactions.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/SalesRule/_files/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/SendFriend/Block/SendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/SendFriend/Block/SendTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/edition: -------------------------------------------------------------------------------- 1 | ce 2 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/output/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-circular-dependencies.csv: -------------------------------------------------------------------------------- 1 | "Circular dependencies:","Total number of chains" 2 | ,0 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-framework-dependencies.csv: -------------------------------------------------------------------------------- 1 | "Dependencies of framework:","Total number" 2 | ,0 3 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Shipping/Block/ItemsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Shipping/Block/ItemsTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Shipping/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Shipping/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Shipping/_files/track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Shipping/_files/track.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sitemap/Block/RobotsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sitemap/Block/RobotsTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Sitemap/Model/SitemapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Sitemap/Model/SitemapTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/Block/SwitcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/Block/SwitcherTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/Model/GroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/Model/GroupTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/Model/StoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/Model/StoreTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/Model/WebsiteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/Model/WebsiteTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/_files/dump_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/_files/dump_config.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/_files/second_store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/_files/second_store.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/_files/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/_files/store.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Store/_files/website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Store/_files/website.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Swatches/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Swatches/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/Model/CalculationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/Model/CalculationTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/Model/ClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/Model/ClassTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/Model/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/Model/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/Model/Rate/SourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/Model/Rate/SourceTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/_files/order_with_tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/_files/order_with_tax.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/_files/report_tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/_files/report_tax.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes_de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes_de.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Test/Integrity/LayoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Test/Integrity/LayoutTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/DesignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Theme/Model/DesignTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/ThemeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Theme/Model/ThemeTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/web/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/web/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file_with_2_dots..txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Namespace_Module/web/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/i18n/fr_FR/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo_email.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Theme/_files/config_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Theme/_files/config_data.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Translation/Model/_files/media/some_file.txt: -------------------------------------------------------------------------------- 1 | some_content -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Ui/Config/ConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Ui/Config/ConverterTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Ui/Config/Reader/DomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Ui/Config/Reader/DomTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Ui/Config/ReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Ui/Config/ReaderTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Ui/_files/bookmarks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Ui/_files/bookmarks.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Ups/Model/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Ups/Model/CarrierTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/UrlRewrite/Block/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/EditTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/User/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/User/Helper/DataTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/User/Model/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/User/Model/UserTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/User/_files/dummy_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/User/_files/dummy_user.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/User/_files/locked_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/User/_files/locked_users.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Usps/Model/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Usps/Model/CarrierTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Variable/_files/variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Variable/_files/variable.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Vault/_files/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Vault/_files/customer.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Vault/_files/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Vault/_files/token.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Weee/Model/TaxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Weee/Model/TaxTest.php -------------------------------------------------------------------------------- /dev/tests/integration/testsuite/Magento/Widget/_files/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/integration/testsuite/Magento/Widget/_files/widgets.php -------------------------------------------------------------------------------- /dev/tests/integration/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/apply/components/fn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/apply/components/fn.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/apply/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/apply/config.json -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/apply/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/apply/index.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/apply/templates/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/apply/templates/node.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/gallery/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/gallery/config.json -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/jsbuild/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/jsbuild/config.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/jsbuild/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/jsbuild/external.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/jsbuild/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/jsbuild/local.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/lib/web/mage/account_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/lib/web/mage/account_menu.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/lib/web/mage/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/lib/web/mage/menu.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/lib/web/mage/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/lib/web/mage/tabs.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/lib/web/mage/translate-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/lib/web/mage/translate-inline.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/script/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/script/config.json -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/script/index.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/script/templates/selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/script/templates/selector.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/script/templates/virtual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/script/templates/virtual.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/text/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/text/config.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/text/external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/text/external.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/text/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/text/local.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/assets/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/assets/tools.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/require.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/require.conf.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/index.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/jasmine-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/jasmine-config.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/settings.json -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/tasks/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/tasks/connect.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/tasks/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/tasks/jasmine.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/spec_runner/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/spec_runner/template.html -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/es6-collections.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/es6-collections.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/accordion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/accordion.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/apply.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/apply.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/backend/suggest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/backend/suggest.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/backend/tree-suggest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/backend/tree-suggest.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/browser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/browser.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/calendar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/calendar.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/collapsible.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/collapsible.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/decorate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/decorate.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/form.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/gallery/gallery.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/gallery/gallery.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/loader.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/menu.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/misc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/misc.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/multiselect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/multiselect.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/requirejs/mixins.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/requirejs/mixins.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/requirejs/static-text.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/requirejs/static-text.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/requirejs/statistician.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/requirejs/statistician.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/scripts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/scripts.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/tabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/tabs.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/template.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/tinymceAdapter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/tinymceAdapter.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/translate-inline.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/translate-inline.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/translate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/translate.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/validation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/validation.test.js -------------------------------------------------------------------------------- /dev/tests/js/jasmine/tests/lib/mage/wysiwygAdapter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/js/jasmine/tests/lib/mage/wysiwygAdapter.test.js -------------------------------------------------------------------------------- /dev/tests/setup-integration/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xml 2 | /var/ 3 | /etc/*.php 4 | /tmp 5 | -------------------------------------------------------------------------------- /dev/tests/setup-integration/allure/allure.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/allure/allure.config.php -------------------------------------------------------------------------------- /dev/tests/setup-integration/etc/config-global.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/etc/config-global.php.dist -------------------------------------------------------------------------------- /dev/tests/setup-integration/etc/di/preferences/cli/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/etc/di/preferences/cli/ce.php -------------------------------------------------------------------------------- /dev/tests/setup-integration/etc/install-config-mysql.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/etc/install-config-mysql.php.dist -------------------------------------------------------------------------------- /dev/tests/setup-integration/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/framework/autoload.php -------------------------------------------------------------------------------- /dev/tests/setup-integration/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/setup-integration/framework/removeTestModules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/framework/removeTestModules.php -------------------------------------------------------------------------------- /dev/tests/setup-integration/framework/tests/unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/framework/tests/unit/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/setup-integration/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/setup-integration/testsuite/Magento/Setup/DryRunTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/setup-integration/testsuite/Magento/Setup/DryRunTest.php -------------------------------------------------------------------------------- /dev/tests/static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/.gitignore -------------------------------------------------------------------------------- /dev/tests/static/allure/allure.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/allure/allure.config.php -------------------------------------------------------------------------------- /dev/tests/static/framework/Magento/PhpStan/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/framework/Magento/PhpStan/autoload.php -------------------------------------------------------------------------------- /dev/tests/static/framework/Magento/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/framework/Magento/ruleset.xml -------------------------------------------------------------------------------- /dev/tests/static/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/framework/autoload.php -------------------------------------------------------------------------------- /dev/tests/static/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/static/framework/tests/unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/framework/tests/unit/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/static/get_github_changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/get_github_changes.php -------------------------------------------------------------------------------- /dev/tests/static/phpunit-all.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/phpunit-all.xml.dist -------------------------------------------------------------------------------- /dev/tests/static/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/GraphQl/LiveCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/GraphQl/LiveCodeTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Html/LiveCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Html/LiveCodeTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Integrity/ComposerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Integrity/ComposerTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Integrity/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Integrity/ConfigTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Integrity/DBSchema/_files/primary_key_exemption_list.txt: -------------------------------------------------------------------------------- 1 | queue_poison_pill 2 | -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/composer_module_names.txt: -------------------------------------------------------------------------------- 1 | magento/module-aws-s3 2 | -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Less/LiveCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Less/LiveCodeTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Php/LiveCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Php/LiveCodeTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/Xml/LiveCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/static/testsuite/Magento/Test/Xml/LiveCodeTest.php -------------------------------------------------------------------------------- /dev/tests/static/testsuite/Magento/Test/_files/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore -------------------------------------------------------------------------------- /dev/tests/unit/.gitignore: -------------------------------------------------------------------------------- 1 | /phpunit.xml 2 | /var/allure-results/ 3 | -------------------------------------------------------------------------------- /dev/tests/unit/allure/allure.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/unit/allure/allure.config.php -------------------------------------------------------------------------------- /dev/tests/unit/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/unit/framework/autoload.php -------------------------------------------------------------------------------- /dev/tests/unit/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/unit/framework/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/unit/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/unit/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /dev/tests/utils/phpunitGroupConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tests/utils/phpunitGroupConfig.php -------------------------------------------------------------------------------- /dev/tools/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/bootstrap.php -------------------------------------------------------------------------------- /dev/tools/dynamicReturnTypeMeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/dynamicReturnTypeMeta.json -------------------------------------------------------------------------------- /dev/tools/grunt/assets/legacy-build/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/assets/legacy-build/shim.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/clean.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/combo.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/concat.json -------------------------------------------------------------------------------- /dev/tools/grunt/configs/cssmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/cssmin.json -------------------------------------------------------------------------------- /dev/tools/grunt/configs/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/eslint.json -------------------------------------------------------------------------------- /dev/tools/grunt/configs/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/exec.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/imagemin.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/less.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/local-themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/local-themes.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/mage-minify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/mage-minify.json -------------------------------------------------------------------------------- /dev/tools/grunt/configs/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/path.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/replace.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/styledocco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/styledocco.json -------------------------------------------------------------------------------- /dev/tools/grunt/configs/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/themes.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/usebanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/usebanner.js -------------------------------------------------------------------------------- /dev/tools/grunt/configs/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/configs/watch.js -------------------------------------------------------------------------------- /dev/tools/grunt/tasks/black-list-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tasks/black-list-generator.js -------------------------------------------------------------------------------- /dev/tools/grunt/tasks/clean-black-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tasks/clean-black-list.js -------------------------------------------------------------------------------- /dev/tools/grunt/tasks/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tasks/deploy.js -------------------------------------------------------------------------------- /dev/tools/grunt/tasks/mage-minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tasks/mage-minify.js -------------------------------------------------------------------------------- /dev/tools/grunt/tasks/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tasks/static.js -------------------------------------------------------------------------------- /dev/tools/grunt/tools/collect-validation-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tools/collect-validation-files.js -------------------------------------------------------------------------------- /dev/tools/grunt/tools/files-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tools/files-router.js -------------------------------------------------------------------------------- /dev/tools/grunt/tools/fs-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/dev/tools/grunt/tools/fs-tools.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/docker-sync.yml -------------------------------------------------------------------------------- /fixCssMapFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/fixCssMapFiles.sh -------------------------------------------------------------------------------- /generated/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/generated/.htaccess -------------------------------------------------------------------------------- /m2-hotfxies/gallery-zoom-issue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/m2-hotfxies/gallery-zoom-issue.patch -------------------------------------------------------------------------------- /mutagen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/mutagen.sh -------------------------------------------------------------------------------- /n98-magerun2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/n98-magerun2.phar -------------------------------------------------------------------------------- /nginx.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/nginx.conf.sample -------------------------------------------------------------------------------- /package.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/package.json.sample -------------------------------------------------------------------------------- /php.dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/php.dev.ini -------------------------------------------------------------------------------- /pub/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/.htaccess -------------------------------------------------------------------------------- /pub/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/.user.ini -------------------------------------------------------------------------------- /pub/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/cron.php -------------------------------------------------------------------------------- /pub/docs: -------------------------------------------------------------------------------- 1 | ../lib/web/css/docs -------------------------------------------------------------------------------- /pub/errors/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/.htaccess -------------------------------------------------------------------------------- /pub/errors/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/404.php -------------------------------------------------------------------------------- /pub/errors/503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/503.php -------------------------------------------------------------------------------- /pub/errors/default/404.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/404.phtml -------------------------------------------------------------------------------- /pub/errors/default/503.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/503.phtml -------------------------------------------------------------------------------- /pub/errors/default/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/css/styles.css -------------------------------------------------------------------------------- /pub/errors/default/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/images/favicon.ico -------------------------------------------------------------------------------- /pub/errors/default/images/i_msg-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/images/i_msg-error.gif -------------------------------------------------------------------------------- /pub/errors/default/images/i_msg-note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/images/i_msg-note.gif -------------------------------------------------------------------------------- /pub/errors/default/images/i_msg-success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/images/i_msg-success.gif -------------------------------------------------------------------------------- /pub/errors/default/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/images/logo.gif -------------------------------------------------------------------------------- /pub/errors/default/nocache.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/nocache.phtml -------------------------------------------------------------------------------- /pub/errors/default/page.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/page.phtml -------------------------------------------------------------------------------- /pub/errors/default/report.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/default/report.phtml -------------------------------------------------------------------------------- /pub/errors/design.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/design.xml -------------------------------------------------------------------------------- /pub/errors/local.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/local.xml.sample -------------------------------------------------------------------------------- /pub/errors/noCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/noCache.php -------------------------------------------------------------------------------- /pub/errors/processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/processor.php -------------------------------------------------------------------------------- /pub/errors/processorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/processorFactory.php -------------------------------------------------------------------------------- /pub/errors/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/errors/report.php -------------------------------------------------------------------------------- /pub/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/get.php -------------------------------------------------------------------------------- /pub/health_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/health_check.php -------------------------------------------------------------------------------- /pub/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/index.php -------------------------------------------------------------------------------- /pub/media/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/.htaccess -------------------------------------------------------------------------------- /pub/media/custom_options/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/custom_options/.htaccess -------------------------------------------------------------------------------- /pub/media/customer/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/customer/.htaccess -------------------------------------------------------------------------------- /pub/media/customer_address/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/customer_address/.htaccess -------------------------------------------------------------------------------- /pub/media/downloadable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/downloadable/.htaccess -------------------------------------------------------------------------------- /pub/media/import/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/import/.htaccess -------------------------------------------------------------------------------- /pub/media/sitemap/.htaccess: -------------------------------------------------------------------------------- 1 | Allow From All 2 | -------------------------------------------------------------------------------- /pub/media/theme_customization/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/media/theme_customization/.htaccess -------------------------------------------------------------------------------- /pub/opt/magento/var/resource_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/opt/magento/var/resource_config.json -------------------------------------------------------------------------------- /pub/static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/static.php -------------------------------------------------------------------------------- /pub/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/pub/static/.htaccess -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/qodana.yaml -------------------------------------------------------------------------------- /var/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/var/.htaccess -------------------------------------------------------------------------------- /vendor/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-it-nerd/aulas-open-source/HEAD/vendor/.htaccess --------------------------------------------------------------------------------