using System; using System.Collections.Generic; using Xunit; namespace Study.DelegateSeries.Test { public class XUnitTest { [Fact] public void UseXunit() { List array = new List(); for (int i = 0; i < 10; i++) { array.Add(i.ToString()); } Assert.True(true, "¿ò¼Üͨ¹ý"); } } }