Infection (Mutation Testing Framework) > fix bugs while running (generate proper code coverage, bugs while running tests randomly)

This commit is contained in:
Meritoo
2019-04-05 20:39:30 +02:00
parent 685addc7c4
commit d1c1d48473
7 changed files with 62 additions and 11 deletions

View File

@@ -4,6 +4,7 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
executionOrder="random"
@@ -27,6 +28,8 @@
<logging>
<log type="coverage-html" target="build/reports/phpunit-coverage/html"/>
<log type="coverage-xml" target="build/reports/infection/coverage-xml"/>
<log type="junit" target="build/reports/infection/phpunit.junit.xml"/>
<log type="coverage-clover" target="build/reports/coveralls/clover.xml"/>
</logging>
</phpunit>