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.
22 lines
378 B
C#
22 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Xunit;
|
|
|
|
using Study.DelegateSeries.Core;
|
|
|
|
namespace Study.DelegateSeries.Test
|
|
{
|
|
public class DemoTest
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
var _demo = new Demo();
|
|
var total = _demo.UseDelegate();
|
|
|
|
Assert.Equal(25, total);
|
|
}
|
|
}
|
|
}
|