-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinfection.json5
43 lines (43 loc) · 1.27 KB
/
infection.json5
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
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
],
excludes: [
"Test"
]
},
"logs": {
"stryker": {
"report": "main"
}
},
"mutators": {
"@default": true,
"LogicalOrAllSubExprNegation": false, // these mutants are false friends
"LogicalOrSingleSubExprNegation": false, // these mutants are false friends
"CastFloat": {
ignore: [
'Shopware\\App\\SDK\\Context\\SalesChannelContext\\Currency::getTaxFreeFrom'
]
},
"LogicalAnd": {
ignore: [
'Shopware\\App\\SDK\\Context\\SalesChannelContext\\SalesChannelContext'
]
},
"LogicalOr": {
ignore: [
'Shopware\\App\\SDK\\Registration\\RegistrationService::registerConfirm',
'Shopware\\App\\SDK\\Shop\\ShopResolver::resolveFromSource'
]
},
"TrueValue": {
ignore: [
// The retry mechanism is tested, the mutation is a false friend
'Shopware\\App\\SDK\\Context\\InAppPurchase\\InAppPurchaseProvider::decodePurchases',
]
}
}
}