Implement Mutation Testing Framework (infection/infection package)

This commit is contained in:
Meritoo
2019-04-03 12:27:54 +02:00
parent a90eeed583
commit cecaa65ef6
7 changed files with 70 additions and 2 deletions

View File

@@ -48,7 +48,7 @@
<!-- Test target -->
<target name="build:test"
depends="test:phpunit"
depends="test:phpunit, test:infection"
/>
<!-- Symfony2 code sniffer -->
@@ -74,6 +74,11 @@
<exec command="${tests.phpunit.command}" passthru="true"/>
</target>
<!-- Run mutation testing -->
<target name="test:infection" depends="build:prepare">
<exec command="${tests.mutation.command}" passthru="true"/>
</target>
<!-- Project build clean -->
<target name="build:clean">
<if>