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