Exemplo n.º 1
0
        public void testsimpleViaDerivedImplementation()
        {
            ISimpleInterface x = new DerivedSimpleImplementation();

            x.Foo();
            AssertTrue(true);
        }
Exemplo n.º 2
0
 public void testsimpleViaDerivedImplementation()
 {
     ISimpleInterface x = new DerivedSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }