Ejemplo n.º 1
0
 public void testSimpleAndClashImplementation1()
 {
     ISimpleInterface x = new SimpleAndClashImplementation();
     x.Foo();
     AssertTrue(true);
 }
Ejemplo n.º 2
0
 public void testSimpleAndClashImplementation2()
 {
     IClashInterface x = new SimpleAndClashImplementation();
     AssertEquals(x.Foo(), 1);
 }