Skip to content

Instantly share code, notes, and snippets.

@disouzam
Created December 24, 2022 03:01
Show Gist options
  • Save disouzam/79930e71b865a55c8e1213750fbf0138 to your computer and use it in GitHub Desktop.
Save disouzam/79930e71b865a55c8e1213750fbf0138 to your computer and use it in GitHub Desktop.
Sample stryker-config.json .NET project
{
"stryker-config": {
"additional-timeout": 20000,
"baseline": {},
"concurrency": 4,
"coverage-analysis": "perTest",
"disable-bail": false,
"disable-mix-mutants": false,
"ignore-methods": [],
"ignore-mutations": [],
"language-version": "Csharp8",
"mutate": [],
"mutation-level": "Complete",
"project": "{mainProjectName}\\{mainProjectName}.csproj",
"project-info": {},
"report-file-name": "stryker-report.html",
"reporters": [
"progress",
"html",
"cleartext"
],
"since": {},
"solution": "..\\{solutionName}.sln",
"target-framework": "netcoreapp3.1",
"test-case-filter": "",
"test-projects": [
"{testProjectName}.csproj"
],
"thresholds": {
"high": 80,
"low": 70,
"break": 50
},
"verbosity": "debug"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment