Ejemplo n.º 1
0
 public void testDerivedExtSimpleImplementation2()
 {
     var x = new DerivedExtSimpleImplementation();
     AssertEquals(x.FooInt(), 3);
 }
Ejemplo n.º 2
0
 public void testDerivedExtSimpleImplementation1()
 {
     IExtSimpleInterface x = new DerivedExtSimpleImplementation();
     AssertEquals(x.FooInt(), 3);
 }