xUnit Test Runner无法通过ReSharper运行测试

时间:2016-08-02 21:21:21

标签: unit-testing resharper .net-core xunit.net

  • Visual Studio 2015 Enterprise Update 3,应用所有KB包更新
  • ReSharper 2016.1.2,最新
  • 根据我的project.json文件,xunit引用是;
    • "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是4.5.2
  • .Net Core Solution类型,表示.xproj

当我尝试使用ReSharper xUnit测试跑步者时,我遇到了;

  

"单元测试运行器无法运行测试,无法运行xUnit测试 -   找不到文件:" D:\ srcs \ GitProjects..etc \ bin \ My.Tests.dll"   参数名称:assemblyFileName

enter image description here 对不起土耳其的例外情况,我还无法改变。 有什么想法吗?我搜索了很多论坛,但我找不到任何有用的东西。提前谢谢。

3 个答案:

答案 0 :(得分:8)

Resharper 中对 .NET Core 测试的支持计划在2016年进行。

解决方法是使用 Visual Studio Test Explorer 。 (测试 - > Windows - >测试资源管理器)

project.json 文件必须包含xunitdotnet-test-xunit

{
  ...
  "testRunner": "xunit",
  "dependencies": {
    ...
    "xunit": "2.2.0-beta2-build3300",
    "dotnet-test-xunit": "2.2.0-preview2-build1029",
  },
  ...
}

重建您的项目,您应该能够成功运行测试。 如果您有Visual Studio 2015,则可以在代码中开始测试。

更新 :( 2017-02-08) 它也适用于nunit;

{
  "testRunner": "nunit",
  "dependencies": {
    ...
  "NUnit": "3.5.0",  
  "dotnet-test-nunit": "3.4.0-beta-3"
  },
...
}

答案 1 :(得分:1)

ReSharper目前不支持.net核心测试。这是计划在2016.3。

答案 2 :(得分:-1)

通过安装Resharper的Early Access Program(2016.3),您将能够运行您的dotnet核心测试。
它支持nunit和xunit。 我安装了它,它解决了我的问题。

链接到相关细节:
https://blog.jetbrains.com/dotnet/2016/09/26/resharper-ultimate-2016-3-eap-build-1-details/