-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker-config.json
More file actions
58 lines (58 loc) · 1.26 KB
/
stryker-config.json
File metadata and controls
58 lines (58 loc) · 1.26 KB
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
52
53
54
55
56
57
58
{
"stryker-config": {
"project-info": {
"name": "RegexCraft",
"module": "RegexCraft",
"version": "1.0.0"
},
"solution": "RegexCraft.sln",
"project": "src/RegexCraft/RegexCraft.csproj",
"test-projects": [
"tests/RegexCraft.Tests/RegexCraft.Tests.csproj"
],
"configuration": "Release",
"target-framework": "net8.0",
"mutation-level": "Complete",
"mutate": [
"**/*.cs",
"!**/Segment.cs",
"!**/QuantifierState.cs"
],
"coverage-analysis": "perTest",
"concurrency": 4,
"disable-bail": false,
"disable-mix-mutants": false,
"thresholds": {
"high": 95,
"low": 90,
"break": 85
},
"verbosity": "info",
"reporters": [
"Progress",
"Html",
"Json",
"Markdown"
],
"report-file-name": "mutation-report",
"since": {
"enabled": false,
"ignore-changes-in": [],
"target": "master"
},
"baseline": {
"enabled": false,
"provider": "disk",
"azure-fileshare-url": "",
"fallback-version": "master"
},
"ignore-mutations": [
"string",
"linq"
],
"ignore-methods": [],
"test-case-filter": "",
"test-runner": "vstest",
"break-on-initial-test-failure": true
}
}