- Visual Studio 2015 Enterprise Update 3, all KB package updates are applied
- ReSharper 2016.1.2, latest
- According to my
project.json
file xunit references are;"xunit": "2.2.0-beta2-build3300", "xunit.abstractions": "2.0.1-rc2", "xunit.assert": "2.2.0-beta2-build3300", "xunit.extensibility.core": "2.2.0-beta2-build3300", "xunit.extensibility.execution": "2.2.0-beta2-build3300", "xunit.runner.console": "2.2.0-beta2-build3300", "xunit.runner.visualstudio": "2.2.0-beta2-build1149", "xunit.runners": "2.0.0"
- .Net framework is 4.5.2
- .Net Core Solution type which means .xproj
When i try to use ReSharper xUnit test runner, i'm encountering;
"Unit Test Runner failed to run tests, Unable to run xUnit tests - File not found:"D:\srcs\GitProjects..etc\bin\My.Tests.dll" Parameter name: assemblyFileName
Sorry for Turkish exception details, i couldn't change yet. Any idea about that? I searched a lot of forums and i couldn't find any useful stuff. Thanks in advance.
Debug
orRelease
is missing so the dll cannot be found. Also when you saypackage.json
I think you meanproject.json
. If that is the case, then you are working in a .net core solution. (as am I) probably best to mention that in your question. – Rubanov"testRunner": "xunit",
and"dependencies": { "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029" },
After a build you should be able to test in Test Explorer – Rubanov