You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
384 B
C#

6 years ago
using System;
using Xunit;
namespace Study.DelegateSeries.Test
{
public class GlobalDelegateTest
{
[Fact]
public void Test1()
{
//<2F><>ʹ<EFBFBD><CAB9>using<6E><67><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֿռ<D5BC><E4A3AC><EFBFBD>Ӷ<EFBFBD><D3B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>򼯵<EFBFBD><F2BCAFB5><EFBFBD><EFBFBD>ü<EFBFBD><C3BC>ɡ<EFBFBD>
NamespaceLevelDelegate global = new NamespaceLevelDelegate(() => string.Empty);
Assert.NotNull(global.Target);
}
}
}