mirror of
https://github.com/solcloud/Counter-Strike.git
synced 2025-04-06 08:42:36 +02:00
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
{
|
|
"$schema": "vendor/infection/infection/resources/schema.json",
|
|
"source": {
|
|
"directories": [
|
|
"server/src/",
|
|
],
|
|
},
|
|
"logs": {
|
|
"text": "/tmp/infection.log",
|
|
},
|
|
"timeout": 20,
|
|
"testFramework": "phpunit",
|
|
"mutators": {
|
|
"global-ignoreSourceCodeByRegex": [
|
|
"\\$this->log\\(.*\\);",
|
|
"throw new GameException\\(.+\\);",
|
|
"GameException::notImplementedYet\\(.*\\);",
|
|
],
|
|
"@default": true,
|
|
"@arithmetic": false,
|
|
"@boolean": false,
|
|
"@cast": false,
|
|
"@conditional_boundary": false,
|
|
"@conditional_negotiation": false,
|
|
"@equal": false,
|
|
"@function_signature": true,
|
|
"PublicVisibility": {
|
|
ignoreSourceCodeByRegex: [
|
|
"public function processFlammableExplosion\\(.+",
|
|
],
|
|
},
|
|
"@identical": true,
|
|
"@number": false,
|
|
"@operator": false,
|
|
"@regex": true,
|
|
"@removal": true,
|
|
"MatchArmRemoval": {
|
|
"ignoreSourceCodeByRegex": [
|
|
".+GameException::invalid\\(.+",
|
|
],
|
|
},
|
|
"ArrayItemRemoval": {
|
|
"ignore": [
|
|
"cs\\Event\\*::serialize",
|
|
],
|
|
},
|
|
"MethodCallRemoval": {
|
|
"ignoreSourceCodeByRegex": [
|
|
"\\$this->setActiveFloor\\(.+\\);",
|
|
"\\$prevPos->setFrom\\(\\$candidate\\);",
|
|
"\\$prevPos->setFrom\\(\\$newPos\\);",
|
|
"\\$this->makeSound\\(.+\\);",
|
|
"\\$soundEvent->setItem\\(.+\\);",
|
|
"\\$soundEvent->setPlayer\\(.+\\);",
|
|
"\\$soundEvent->setSurface\\(.+\\);",
|
|
"\\$soundEvent->addExtra\\(.+\\);",
|
|
"\\$this->addSoundEvent\\(.+\\);",
|
|
"\\$bullet->addPlayerIdSkip\\(\\$playerId\\);",
|
|
]
|
|
},
|
|
"@return_value": true,
|
|
"IntegerNegation": false,
|
|
"@sort": true,
|
|
"@unwrap": true,
|
|
"For_": true,
|
|
"Foreach_": true,
|
|
},
|
|
}
|