This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace OllamaStudy.UseExtensionsAI;
public class UseXUnitTest
{
private ITestOutputHelper _output;
public UseXUnitTest(ITestOutputHelper outputHelper)
_output = outputHelper;
}
[Fact]
public void UseXunit_Test()
string message = "使用xUnit单元测试框架!";
_output.WriteLine(message);
Assert.True(true, message);