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
439 B
C#

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