gpt4 book ai didi

unit-testing - 如何使用VS2015 Preview运行xUnit单元测试?

转载 作者:行者123 更新时间:2023-12-03 12:13:10 28 4
gpt4 key购买 nike

我通过扩展管理器添加了“Visual Studio的xUnit.net运行程序” v0.99.8,但是当我打开“测试资源管理器”窗口时,它似乎没有拾取任何单元测试。另外,Resharper 9 EAP确实是Resharper唯一支持VS2015的版本,但它似乎尚未安装xUnit Test Runner插件。

然后,如何在VS2015 Preview中运行xUnit单元测试?

最佳答案

您可以在这里找到答案:http://blogs.msdn.com/b/webdev/archive/2014/11/12/announcing-asp-net-features-in-visual-studio-2015-preview-and-vs2013-update-4.aspx

Visual Studio supports running and debugging for ASP.NET 5 xUnit tests through test explorer. All you need to do is add the xUnit dependencies and test commands to the test project's project.json file, as shown below (NOTE: To install the xUnit packages you will need to add https://www.myget.org/F/aspnetvnext/api/v2 as a NuGet package source):


"dependencies": {
"Xunit.KRunner": "1.0.0-beta1"
},

"commands": {
"test": "Xunit.KRunner"
},

如果有人问如何将 https://www.myget.org/F/aspnetvnext/api/v2添加为NuGet包源...
步骤如下:
  • 在Visual Studio 2015预览版中,转到工具->选项-> NuGet程序包管理器->程序包源
  • 单击顶部的加号(添加)按钮(请参见下图)
  • 如下图所示输入名称和来源(注意:输入名称和来源后,请务必单击“更新”按钮)

  • 编码愉快!

    关于unit-testing - 如何使用VS2015 Preview运行xUnit单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27018778/

    28 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com