Added mutation tests for CLI E2E tests

This commit is contained in:
Alejandro Celaya
2022-08-09 19:15:49 +02:00
parent 709a4639b3
commit db47a9a253
2 changed files with 35 additions and 4 deletions

24
infection-cli.json Normal file
View File

@@ -0,0 +1,24 @@
{
"source": {
"directories": [
"module/*/src"
]
},
"timeout": 5,
"logs": {
"text": "build/infection-cli/infection-log.txt",
"html": "build/infection-cli/infection-log.html",
"summary": "build/infection-cli/summary-log.txt",
"debug": "build/infection-cli/debug-log.txt"
},
"tmpDir": "build/infection-cli/temp",
"phpUnit": {
"configDir": "."
},
"testFrameworkOptions": "--configuration=phpunit-cli.xml",
"mutators": {
"@default": true,
"IdenticalEqual": false,
"NotIdenticalNotEqual": false
}
}