forked from level23/druid-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfection.json.dist
51 lines (51 loc) · 1.36 KB
/
infection.json.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"timeout": 10,
"source": {
"directories": [
"src"
],
"excludes": [
"*DruidService*",
]
},
"phpUnit": {
"configDir": "build/",
"customPath": "vendor/phpunit/phpunit/phpunit"
},
"logs": {
"text": "infection.log"
},
"mutators": {
"@default": true,
"@function_signature": false,
"ArrayItemRemoval": {
"ignore": [
"Level23\\Druid\\DruidClient::executeQuery",
"Level23\\Druid\\DruidClient::executeTask"
]
},
"CastString": {
"ignore": [
"Level23\\Druid\\Concerns\\HasFilter::where",
"Level23\\Druid\\Concerns\\HasHaving::having",
"Level23\\Druid\\Filters\\BetweenFilter::toArray"
]
},
"CastBool": {
"ignore": [
"Level23\\Druid\\Extractions\\LookupExtraction::__construct",
"Level23\\Druid\\Extractions\\InlineLookupExtraction::__construct"
]
},
"LessThanNegotiation": {
"ignore": [
"Level23\\Druid\\DruidClient::executeRawRequest"
]
},
"Increment": {
"ignore": [
"Level23\\Druid\\DruidClient::executeRawRequest"
]
}
}
}