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