Beispiel #1
0
        public void testExtSimpleImplementation2()
        {
            var x = new ExtSimpleImplementation();

            x.Foo();
            AssertTrue(true);
        }
Beispiel #2
0
        public void testExtSimpleImplementation1()
        {
            ISimpleInterface x = new ExtSimpleImplementation();

            x.Foo();
            AssertTrue(true);
        }
Beispiel #3
0
        public void testExtSimpleImplementation4()
        {
            var x = new ExtSimpleImplementation();

            AssertEquals(x.FooInt(), 1);
        }
Beispiel #4
0
        public void testExtSimpleImplementation3()
        {
            IExtSimpleInterface x = new ExtSimpleImplementation();

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