Running Static Tests
Executing Magento 2 static tests is straightforward. They can be executed in several ways.
Running static tests on all files
To run static tests on all files, navigate to the Magento base directory and execute the following command:
1
bin/magento dev:test:run static
Running PHP static tests on a subset of files
To run the static tests on a subset of files, create a new testsuite for phpunit:
-
From the Magento base directory navigate to
dev/tests/static/testsuite/Magento/Test -
Create a copy of the
Phpfolder on the same directory and rename it toLocal -
Navigate to
dev/tests/static/testsuite/Magento/Test/Local/_files/whitelistand opencommon.txt -
Replace the contents with the folder of the files that you want to test. For example:
1 2
# Format: <componentType=module|library|theme|language|*> <componentName> <globPattern> or simply <globPattern> app/code/Magento/CatalogSearch/Model/Search
-
Create a copy of the
dev/tests/static/phpunit.xml.distfile and call itphpunit.xml: -
Add a new testsuite to the
dev/tests/static/phpunit.xmlfile inside the<testsuites>node:1 2 3 4 5 6
<testsuites> ... <testsuite name="Local Test Suite"> <file>testsuite/Magento/Test/Local/LiveCodeTest.php</file> </testsuite> </testsuites>
-
Navigate to the Magento base directory and run:
1
./vendor/bin/phpunit --testsuite="Local Test Suite" -c dev/tests/static/phpunit.xml
As a result of this process, you can run PHP static tests on a subset of files. It is also possible to run other types of static tests by following the same process with other testsuites.