namespace Polly8Study.Test
{
    public class UseXunit
    {
        private readonly ITestOutputHelper _output;

        public UseXunit(ITestOutputHelper testOutput) 
        {
            _output = testOutput;
        }

        [Fact]
        public void Use_xUnit_Test()
        {
            var msg = "使用 xUnit 单元测试框架!";
            Assert.True(true, msg);

            _output.WriteLine(msg);
        }
    }
}