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

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