예제 #1
0
 public void testExtExplicitImplementation2()
 {
     IExtSimpleInterface x = new ExtExplicitImplementation();
     AssertEquals(x.FooInt(), 1);
 }
예제 #2
0
 public void testExtExplicitImplementation1()
 {
     ISimpleInterface x = new ExtExplicitImplementation();
     x.Foo();
     AssertTrue(true);
 }