Beispiel #1
0
        public void testSimpleImplementation2()
        {
            var x = new SimpleImplementation();

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

            x.Foo();
            AssertTrue(true);
        }