fix inspections

This commit is contained in:
Dennis Eichhorn 2023-10-24 20:46:22 +00:00
parent 7d85e108fd
commit c556c725da

View File

@ -143,7 +143,7 @@ php vendor/bin/phpunit -c tests/PHPUnit/phpunit_no_coverage.xml
In order to also create a code coverage report run:
```sh
php -dxdebug.mode=coverage,develop vendor/bin/phpunit -c tests/phpunit_default.xml --log-junit Build/test/junit_php.xml --coverage-html Build/coverage
php -dxdebug.mode=coverage,develop,debug vendor/bin/phpunit -c tests/phpunit_default.xml --log-junit Build/test/junit_php.xml --coverage-html Build/coverage
```
A visualization of the coverage can be found at http://127.0.0.1/Build/coverage
@ -151,7 +151,7 @@ A visualization of the coverage can be found at http://127.0.0.1/Build/coverage
If you would like to run a individual test suit run:
```sh
php -dxdebug.remote_enable=1 -dxdebug.start_with_request=yes -dxdebug.mode=coverage,develop vendor/bin/phpunit tests/MyTest.php
php -dxdebug.remote_enable=1 -dxdebug.start_with_request=yes -dxdebug.mode=coverage,develop,debug vendor/bin/phpunit tests/MyTest.php
```