Пример #1
0
        public void TestParentAssignment()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);
            Assert.AreEqual(12345, testParentable.GetParent());
        }
Пример #2
0
        public void TestParentChangedNotification()
        {
            TestParentable testParentable = new TestParentable();

            testParentable.SetParent(12345);

            Assert.IsTrue(testParentable.ParentChangedCalled);
        }