示例#1
0
 public void testSimpleImplementation2()
 {
     var x = new SimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }
示例#2
0
 public void testSimpleImplementation1()
 {
     ISimpleInterface x = new SimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }