Skip to content

Commit 7c7bad0

Browse files
committed
MQE-1963: Update XSD Schema to verify that file has only single entity
1 parent 2827d98 commit 7c7bad0

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/guides/git-vs-composer-install.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ The file structure under both paths is the same:
5555
│   └── ...
5656
├── Section
5757
│   └── ...
58+
├── Suite
59+
│   └── ...
5860
└── Test
5961
└── ...
6062
```
@@ -65,6 +67,7 @@ With either type of installation, all tests and test data are read and merged by
6567

6668
1. `<magento_root>/app/code/<vendor_name>/<module_name>/Test/Mftf/`
6769
1. `<magento_root>/vendor/<vendor_name>/<module_name>/Test/Mftf/`
70+
1. `<magento_root>/dev/tests/acceptance/tests/functional/<vendor_name>/<module_name>/`
6871

6972
## Conclusion
7073

docs/introduction.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ codeception.dist.yml // Codeception configuration (generated while ru
104104

105105
## MFTF tests
106106

107-
The MFTF supports two different locations for storing the tests and test artifacts:
108-
107+
The MFTF supports three different locations for storing the tests and test artifacts:
109108
- `<magento_root>/app/code/<vendor_name>/<module_name>/Test/Mftf/` is the directory to create new tests.
110109
- `<magento_root>/vendor/<vendor_name>/<module_name>/Test/Mftf/` is the directory with the out of the box tests (fetched by the Composer).
110+
- `<magento_root>/dev/tests/acceptance/tests/functional/<vendor_name>/<module_name>/` is the directory to create new tests that depends on more than one Magento modules.
111111

112112
All tests and test data from these locations are merged in the order indicated in the above list.
113113

114-
The file structure under the both path cases is the same:
114+
The directories immediately follow above three paths use the same format and further sub-directories under each category are supported.
115115

116116
```tree
117117
<Path>
@@ -125,6 +125,8 @@ The file structure under the both path cases is the same:
125125
│   └── ...
126126
├── Section
127127
│   └── ...
128+
├── Suite
129+
│   └── ...
128130
└── Test
129131
└── ...
130132
```

0 commit comments

Comments
 (0)