Stryker.NET failed to mutate your project. Please upgrade to MsTest V2. #1973
-
I am running Stryker on six projects in the same solution and all configured to use the same version of NUnit (version 3.13.2). Stryker is failing on two of the projects with the following error:
Does anyone have any suggestions on how to resolve this issue? Any help you can provide will be greatly appreciated. Additional BackgroundConfiguration File{
"stryker-config":
{
"solution": "sln",
"project": "Shared.csproj",
"test-projects": ["src/Data.Tests/Data.Tests.csproj", "src/Model.Tests/Model.Tests.csproj", "src/Services.Wcf.Tests/Services.Wcf.Tests.csproj", "src/Shared.Tests/Shared.Tests.csproj", "src/Tasks.Tests/Tasks.Tests.csproj", "src/UI.Web.Tests/UI.Web.Tests.csproj"],
"ignore-methods": ["Debug.*"],
"mutation-level": "Complete",
"reporters": ["html"],
"verbosity": "debug"
}
}
Stryker Output
Log File |
Beta Was this translation helpful? Give feedback.
Answered by
rouke-broersma
Mar 23, 2022
Replies: 1 comment 2 replies
-
At least one of your test projects must (also) be an mstest v1 test project. This means that for example a wrong ProjectGuid is used. This automatically loads MsTest v1, which we are not compatible with. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
cmanners
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At least one of your test projects must (also) be an mstest v1 test project. This means that for example a wrong ProjectGuid is used. This automatically loads MsTest v1, which we are not compatible with.