phpunit.xml.dist assumes that all projects contain just one module, and that test folders are located in the project's root. Example: Currency contains two submodules that would be located at /modules/currency/currency and /modules/currency/currency_test. Currency (the module) its test would then be located at /modules/currency/currency/tests, but phpunit.xml.dist expects to find them at /modules/currency/tests.
Does phpunit.xml.dist support more dynamic path patterns, or can we add ./modules/*/*/tests/*
to the list of paths?