|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Study.DelegateSeries.Test
|
|
|
|
|
{
|
|
|
|
|
public class XUnitTest
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void UseXunit()
|
|
|
|
|
{
|
|
|
|
|
List<string> array = new List<string>();
|
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
|
|
|
{
|
|
|
|
|
array.Add(i.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.True(true, "<22><><EFBFBD><EFBFBD>ͨ<EFBFBD><CDA8>");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|