一、集成Test.SDK与Xunit 方法1:程序包管理器控制台安装
Install-Package Microsoft.NET.Test.Sdk -Version 16.11.0
Install-Package xunit -Version 2.4.1
Install-Package xunit.runner.visualstudio -Version 2.4.3
Install-Package Shouldly -Version 4.0.3
方法2:Nuget包安装
输入Microsoft.NET.Test.Sdk、xunit 、xunit.runner.visualstudio、Shouldly,并安装最新版本
二、编程单元测试
public class A
{
public string Name { get; set; }
public string Value { get; set; }
public A()
{
}
public A(string name, string value)
{
Name = name;
Value = value;
}
public string GetName()
{
return Name;
}
public string GetValue()
{
return Value;
}
}
public class MockA
{
[Fact]
public void TestA_测试Name()
{
A a = new A("张三", "123");
a.GetName().ShouldBe("张三");
}
[Fact]
public void TestA_测试Value()
{
A a = new A("张三", "123");
a.GetValue().ShouldBe("123");
}
}
三、在方法体或者类点击Run Unit Tests
|