From 5cf05ad66457991fb9859188bf8bb2e61661cbd3 Mon Sep 17 00:00:00 2001 From: Donald Booth Date: Thu, 18 Jul 2019 11:24:28 -0500 Subject: [PATCH] Adding test reference file. --- docs/test/mftf-tests.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/test/mftf-tests.md diff --git a/docs/test/mftf-tests.md b/docs/test/mftf-tests.md new file mode 100644 index 000000000..574c98455 --- /dev/null +++ b/docs/test/mftf-tests.md @@ -0,0 +1,24 @@ + +# MFTF Test Reference + +The Magento Functional Testing Framework runs tests on every Module within Magento. + +These files are stored within each Module folder in the Magento repository. +This page lists all those tests so that developers have a good sense of what is covered. + +{% assign mftf = site.data.mftf | group_by: "module" %} +{% assign sorted = mftf | sort: "name" %} + +{% for module in sorted %} + +## {{ module.name }} + +{% assign tests = module.items | sort: "filename" %} +{% for item in tests %} + +#### [{{ item.testname }}]({{ item.link }}) + +{{ item.description}} + +{% endfor %} +{% endfor %} \ No newline at end of file