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

            x.Foo();
            AssertTrue(true);
        }
Exemplo n.º 2
0
        public void testExtExplicitImplementation2()
        {
            IExtSimpleInterface x = new ExtExplicitImplementation();

            AssertEquals(x.FooInt(), 1);
        }