Ejemplo n.º 1
0
 public void testExtSimpleImplementation2()
 {
     var x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }
Ejemplo n.º 2
0
 public void testExtSimpleImplementation1()
 {
     ISimpleInterface x = new ExtSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }