Exemple #1
0
        public void TestBaseReferences()
        {
            var instance = new SubclassWithBasePropertyReferences();

            instance.MyProperty = "foo";
            AssertEquals(instance.MyProperty, "foo");
        }
Exemple #2
0
 public void TestBaseReferences()
 {
     var instance = new SubclassWithBasePropertyReferences();
     instance.MyProperty = "foo";
     AssertEquals(instance.MyProperty, "foo");
 }