|
|
|
|
using Xunit.Abstractions;
|
|
|
|
|
|
|
|
|
|
namespace NotebookStudy.Test
|
|
|
|
|
{
|
|
|
|
|
public class UseXunit
|
|
|
|
|
{
|
|
|
|
|
private ITestOutputHelper _testOutput;
|
|
|
|
|
public UseXunit(ITestOutputHelper testOutputHelper)
|
|
|
|
|
{
|
|
|
|
|
_testOutput = testOutputHelper;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void Xunit_Test()
|
|
|
|
|
{
|
|
|
|
|
string message = "ʹ<><CAB9> xUnit <20><>Ԫ<EFBFBD><D4AA><EFBFBD>Կ<EFBFBD><D4BF>ܣ<EFBFBD><DCA3><EFBFBD><EFBFBD>е<EFBFBD>Ԫ<EFBFBD><D4AA><EFBFBD><EFBFBD>";
|
|
|
|
|
|
|
|
|
|
_testOutput.WriteLine(message);
|
|
|
|
|
|
|
|
|
|
Assert.True(true, message);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|