Skip to content

Commit b57dcc8

Browse files
author
Vladyslav Shcherbyna
committed
MAGETWO-33190: Prepare pull request
1 parent acd4a13 commit b57dcc8

File tree

4 files changed

+41
-68
lines changed

4 files changed

+41
-68
lines changed
Lines changed: 11 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,16 @@
1-
<?xml version="1.0" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
/**
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7-
-->
8-
<constraint>
9-
<assertTermSuccessSaveMessage module="Magento_CheckoutAgreements">
10-
<severity>low</severity>
11-
</assertTermSuccessSaveMessage>
12-
<assertTermOnCheckout module="Magento_CheckoutAgreements">
13-
<severity>low</severity>
14-
</assertTermOnCheckout>
15-
<assertTermAbsentOnCheckout module="Magento_CheckoutAgreements">
16-
<severity>low</severity>
17-
</assertTermAbsentOnCheckout>
18-
<assertTermInGrid module="Magento_CheckoutAgreements">
19-
<severity>low</severity>
20-
</assertTermInGrid>
21-
<assertTermSuccessDeleteMessage module="Magento_CheckoutAgreements">
22-
<severity>low</severity>
23-
</assertTermSuccessDeleteMessage>
24-
<assertTermAbsentInGrid module="Magento_CheckoutAgreements">
25-
<severity>low</severity>
26-
</assertTermAbsentInGrid>
27-
<assertTermRequireMessageOnMultishippingCheckout module="Magento_CheckoutAgreements">
28-
<severity>high</severity>
29-
</assertTermRequireMessageOnMultishippingCheckout>
30-
</constraint>
7+
-->
8+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/global/constraints.xsd">
9+
<constraint name="assertTermSuccessSaveMessage" module="Magento_CheckoutAgreements" severity="low"/>
10+
<constraint name="assertTermOnCheckout" module="Magento_CheckoutAgreements" severity="low"/>
11+
<constraint name="assertTermAbsentOnCheckout" module="Magento_CheckoutAgreements" severity="low"/>
12+
<constraint name="assertTermInGrid" module="Magento_CheckoutAgreements" severity="low"/>
13+
<constraint name="assertTermSuccessDeleteMessage" module="Magento_CheckoutAgreements" severity="low"/>
14+
<constraint name="assertTermAbsentInGrid" module="Magento_CheckoutAgreements" severity="low"/>
15+
<constraint name="assertTermRequireMessageOnMultishippingCheckout" module="Magento_CheckoutAgreements" severity="high"/>
16+
</config>
Lines changed: 20 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,25 @@
1-
<?xml version="1.0" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
/**
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7-
-->
8-
<constraint>
9-
<assertCurrencySymbolSuccessSaveMessage module="Magento_CurrencySymbol">
10-
<severity>low</severity>
11-
<require>
12-
<currencySymbolIndex class="Magento\CurrencySymbol\Test\Page\Adminhtml\SystemCurrencySymbolIndex" />
13-
</require>
14-
</assertCurrencySymbolSuccessSaveMessage>
15-
<assertCurrencySymbolOnProductPage module="Magento_CurrencySymbol">
16-
<severity>low</severity>
17-
<require>
18-
<cmsIndex class="Magento\Cms\Test\Page\CmsIndex" />
19-
<catalogCategoryView class="Magento\Catalog\Test\Page\Category\CatalogCategoryView" />
20-
<product class="Magento\Catalog\Test\Fixture\CatalogProductSimple" />
21-
<catalogProductView class="Magento\Catalog\Test\Page\Product\CatalogProductView" />
22-
<currencySymbol class="Magento\CurrencySymbol\Test\Fixture\CurrencySymbolEntity" />
23-
</require>
24-
</assertCurrencySymbolOnProductPage>
25-
<assertCurrencySymbolOnCatalogPage module="Magento_CurrencySymbol">
26-
<severity>low</severity>
27-
<require>
28-
<cmsIndex class="Magento\Cms\Test\Page\CmsIndex" />
29-
<catalogCategoryView class="Magento\Catalog\Test\Page\Category\CatalogCategoryView" />
30-
<product class="Magento\Catalog\Test\Fixture\CatalogProductSimple" />
31-
<currencySymbol class="Magento\CurrencySymbol\Test\Fixture\CurrencySymbolEntity" />
32-
</require>
33-
</assertCurrencySymbolOnCatalogPage>
34-
</constraint>
7+
-->
8+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/global/constraints.xsd">
9+
<constraint name="assertCurrencySymbolSuccessSaveMessage" module="Magento_CurrencySymbol" severity="low">
10+
<argument name="currencySymbolIndex">Magento\CurrencySymbol\Test\Page\Adminhtml\SystemCurrencySymbolIndex</argument>
11+
</constraint>
12+
<constraint name="assertCurrencySymbolOnProductPage" module="Magento_CurrencySymbol" severity="low">
13+
<argument name="cmsIndex">Magento\Cms\Test\Page\CmsIndex</argument>
14+
<argument name="catalogCategoryView">Magento\Catalog\Test\Page\Category\CatalogCategoryView</argument>
15+
<argument name="product">Magento\Catalog\Test\Fixture\CatalogProductSimple</argument>
16+
<argument name="catalogProductView">Magento\Catalog\Test\Page\Product\CatalogProductView</argument>
17+
<argument name="currencySymbol">Magento\CurrencySymbol\Test\Fixture\CurrencySymbolEntity</argument>
18+
</constraint>
19+
<constraint name="assertCurrencySymbolOnCatalogPage" module="Magento_CurrencySymbol" severity="low">
20+
<argument name="cmsIndex">Magento\Cms\Test\Page\CmsIndex</argument>
21+
<argument name="catalogCategoryView">Magento\Catalog\Test\Page\Category\CatalogCategoryView</argument>
22+
<argument name="product">Magento\Catalog\Test\Fixture\CatalogProductSimple</argument>
23+
<argument name="currencySymbol">Magento\CurrencySymbol\Test\Fixture\CurrencySymbolEntity</argument>
24+
</constraint>
25+
</config>
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<?xml version="1.0" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
/**
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7-
-->
8-
<constraint>
9-
<assertOrderSuccessPlacedMessage module="Magento_Multishipping">
10-
<severity>high</severity>
11-
</assertOrderSuccessPlacedMessage>
12-
</constraint>
7+
-->
8+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/global/constraints.xsd">
9+
<constraint name="assertOrderSuccessPlacedMessage" module="Magento_Multishipping" severity="high"/>
10+
</config>
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
<?xml version="1.0" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
/**
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7-
-->
8-
<constraint>
9-
<assertFptApplied module="Magento_Weee">
10-
<severity>high</severity>
11-
</assertFptApplied>
12-
</constraint>
7+
-->
8+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/global/constraints.xsd">
9+
<constraint name="assertFptApplied" module="Magento_Weee" severity="high"/>
10+
</config>

0 commit comments

Comments
 (0)