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#

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