You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
427 B
C#

namespace Polly8Study.Test
{
public class UseXunit
{
private readonly ITestOutputHelper _output;
public UseXunit(ITestOutputHelper testOutput)
{
_output = testOutput;
}
[Fact]
public void Use_xUnit_Test()
{
var msg = "使用 xUnit 单元测试框架!";
Assert.True(true, msg);
_output.WriteLine(msg);
}
}
}