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.
24 lines
499 B
C#
24 lines
499 B
C#
using Xunit.Abstractions;
|
|
|
|
namespace OllamaStudy.UseOllamaSharp
|
|
{
|
|
public class UseXunitTest
|
|
{
|
|
private readonly ITestOutputHelper _output;
|
|
|
|
public UseXunitTest(ITestOutputHelper outputHelper)
|
|
{
|
|
_output = outputHelper;
|
|
}
|
|
|
|
[Fact]
|
|
public void UseXunit_Test()
|
|
{
|
|
var message = """使用xUnit单元测试框架!""";
|
|
_output.WriteLine(message);
|
|
|
|
Assert.True(true,message);
|
|
}
|
|
}
|
|
}
|