Ejemplo n.º 1
0
        public void TestParentAssignment()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);
            Assert.AreEqual(12345, testParentable.GetParent());
        }
Ejemplo n.º 2
0
        public void TestParentChangedNotification()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);

            Assert.IsTrue(testParentable.ParentChangedCalled);
        }