-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathDataActionsTest.xml
25 lines (22 loc) · 1.06 KB
/
DataActionsTest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../../../../src/Magento/FunctionalTestingFramework/Test/etc/testSchema.xsd">
<test name="DataActionsTest">
<before>
<createData entity="entity" stepKey="createdInBefore"/>
<updateData entity="entity" createDataKey="createdInBefore" stepKey="updateInBefore"/>
<deleteData createDataKey="createdInBefore" stepKey="deleteInBefore"/>
</before>
<createData entity="entity" stepKey="createdInTest"/>
<updateData entity="entity" createDataKey="createdInTest" stepKey="updateInTest"/>
<deleteData createDataKey="createdInTest" stepKey="deleteInTest"/>
<updateData entity="entity" createDataKey="createdInBefore" stepKey="updatedDataOutOfScope"/>
<deleteData createDataKey="createdInBefore" stepKey="deleteDataOutOfScope"/>
</test>
</tests>