示例#1
0
 public void testExtSimpleImplementation2()
 {
     var x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }
示例#2
0
 public void testExtSimpleImplementation1()
 {
     ISimpleInterface x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }