public void testSimpleImplementation2() { var x = new SimpleImplementation(); x.Foo(); AssertTrue(true); }
public void testSimpleImplementation1() { ISimpleInterface x = new SimpleImplementation(); x.Foo(); AssertTrue(true); }