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#

2 months ago
namespace Polly8Study.Test
{
public class UseXunit
{
private readonly ITestOutputHelper _output;
public UseXunit(ITestOutputHelper testOutput)
{
_output = testOutput;
}
[Fact]
public void Use_xUnit_Test()
{
var msg = "ʹ<><CAB9> xUnit <20><>Ԫ<EFBFBD><D4AA><EFBFBD>Կ<EFBFBD><D4BF>ܣ<EFBFBD>";
Assert.True(true, msg);
_output.WriteLine(msg);
}
}
}