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