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.
30 lines
586 B
C#
30 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Xunit;
|
|
|
|
namespace Study.DelegateSeries.Test.UseFixture
|
|
{
|
|
public class UseClassFixtureDemo : IDisposable,IClassFixture<ClassFixtureDemo>
|
|
{
|
|
public ClassFixtureDemo demo;
|
|
|
|
public UseClassFixtureDemo(ClassFixtureDemo _demo)
|
|
{
|
|
this.demo = _demo;
|
|
}
|
|
|
|
[Fact]
|
|
public void Test()
|
|
{
|
|
var shlfName = demo.ShowSelf();
|
|
Assert.True(true);
|
|
}
|
|
|
|
void IDisposable.Dispose()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|