Skip to content

Commit

Permalink
Merge pull request #17 from thecogworks/feat/mutation-tests
Browse files Browse the repository at this point in the history
feat: mutator tests
  • Loading branch information
aochmann authored Jun 11, 2021
2 parents 16243c9 + 8183d1b commit dff0105
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-stryker": {
"version": "0.22.4",
"commands": [
"dotnet-stryker"
]
}
}
}
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ indent_size = 2
# JSON Files
[*.{json,json5,webmanifest}]
indent_size = 2
insert_final_newline = false

# YAML Files
[*.{yml,yaml}]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"stryker-config": {
"reporters": [
"html",
"cleartext"
],
"timeout-ms": 20000,
"log-file": true,
"project-file": "Cogworks.Essentials.csproj",
"max-concurrent-test-runners": 4,
"threshold-high": 80,
"threshold-low": 70,
"threshold-break": 60,
"mutation-level": "Standard",
"mutate": [
"!Constants/*.*",
"!EventsArgs/*.*",
"!Extensions/*.*",
"!Helpers/*.*"
],
"coverage-analysis": "perTestInIsolation"
}
}

0 comments on commit dff0105

Please sign in to comment.