姿态 发表于 2019-4-12 16:23:19

在c#中配置xunit单元测试

1,直接使用NuGet安装如下两个库

xunit

xunit.runner.visualstudio -Pre

如果报:“xunit.core”已拥有为“xunit.extensibility.core”定义的依赖项。




安装xunit.net 的问题

“Attempting to resolve dependency 'xunit'. Attempting to resolve dependency 'xunit.core (= 2.0.0-rc1-build2826)'. 'xunit.core' already has a dependency defined for 'xunit.extensibility.core'.”,原因是nuget的版本需要update。

具体的做法:

Tools > Extensions and Updates > Updates > Visual Studio Gallery 下update NuGet itself

然后安装xunit.runner​, VS就会检查到用户的test




2,调出2012的测试资源管理器

测试-》窗口-》测试资源管理器

3,书写代码:

namespace chsarpsdk.Qiniu.Test.Http
{

   public class httptest1
    {
      
      public void TestAdd()
      {
            Assert.Equal<int>(5, 2 + 1);
            Console.WriteLine("woaini");
      }
      
      public void testMax()
      {
            Assert.Equal(3, Math.Max(3, 2));
      }


    }
}

其中一个成功,一个失败


页: [1]
查看完整版本: 在c#中配置xunit单元测试