using System; using Xunit; namespace AccessStudy.CoreTest { public class UseXunit { [Fact] public void Test() { Assert.True(true,"使用xUnit"); } } }