public void TestParentAssignment()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);
            Assert.AreEqual(12345, testParentable.GetParent());
        }
        public void TestParentChangedNotification()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);

            Assert.IsTrue(testParentable.ParentChangedCalled);
        }