Library provides useful doubles of different kinds for unit testing of Magento 2.3+. Some of the doubles can be created using dedicated builders, which helps in configuring desired behavior of doubles. By using these doubles you can get rid of over-mocking in unit tests and time spent on writing unit should decrease. It can be achieved because all doubles inherits or implements replaced object or interface, so type consistency is preserved. Examples in here.
- PHP ^7.4
To install the extension use the following commands:
composer require bkubicki/magento2-unit-tests-doubles
Run command
composer test-unit-coverage
which is an alias for
./vendor/bin/phpunit -c phpunit.xml --testsuite "Unit" --coverage-html coverage/coverage-html --colors=always
Run command
composer test-integration
which is an alias for
./vendor/bin/phpunit -c phpunit.xml --testsuite "Integration" --colors=always
-
Infection tests requires xDebug enabled.
-
Run command
composer test-infection
which does the following:
- Run PHPUnit tests and generate coverage in xml:
./vendor/bin/phpunit -c phpunit.xml --testsuite "Unit" --coverage-xml coverage/coverage-xml --log-junit coverage/phpunit.junit.xml
- Run Infection mutation tests for covered code
./vendor/bin/infection --coverage=coverage --only-covered --show-mutations
- Run PHPUnit tests and generate coverage in xml:
-
Find detailed report from mutations in
var/log/dev/infection.log
.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See changelog here.
This project is licensed under the MIT License - see the LICENSE file for details.