-
Notifications
You must be signed in to change notification settings - Fork 2
/
infection.json5
47 lines (47 loc) · 1.47 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
44
45
46
47
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": [
"src"
],
excludes: [
"Command/SetupUrlCommand.php", // internal utility command, that needs no testing
"Command/ReportTurnoverCommand.php", // wrapper around tested ReportService.php
"Framework/Service/HmrService.php", // Hot Module Reload Helper
"Framework/Doctrine/DoctrineSchemaSubscriber.php", // Doctrine event subscriber
"Entity/",
"Tests/" // changes that doesn't break tests are fine
]
},
logs: {
"text": "var/log/infection.log",
"stryker": {
"report": "main"
}
},
"tmpDir": "var/cache",
"testFramework":"phpunit",
"mutators": {
"@default": true,
"LessThan": {
"ignore": [
"Swag\\Braintree\\Braintree\\Util\\FloatComparator"
]
},
"PlusEqual": {
"ignore": [
"Swag\\Braintree\\Braintree\\Payment\\OrderInformationService::extractDiscountAmount",
]
},
"GreaterThan": {
"ignore": [
"Swag\\Braintree\\Braintree\\Payment\\OrderInformationService::extractDiscountAmount",
]
},
"ArrayItem": {
"ignore": [
"Swag\\Braintree\\Braintree\\Payment\\BraintreePaymentService::handleTransaction",
]
}
}
}