Пример #1
0
        public void testsimpleViaDerivedImplementation()
        {
            ISimpleInterface x = new DerivedSimpleImplementation();

            x.Foo();
            AssertTrue(true);
        }
Пример #2
0
 public void testsimpleViaDerivedImplementation()
 {
     ISimpleInterface x = new DerivedSimpleImplementation();
     x.Foo();
     AssertTrue(true);
 }