コード例 #1
0
        public void BubblePropertyChangesOfInsertedObjectViaSetValues()
        {
            var testNotifyPropertyChangedObject = new TestNotifyPropertyChangedObject();
            var array = new MultiDimensionalArray<TestNotifyPropertyChangedObject> { IsAutoSorted = false };

            array.SetValues(new[] { testNotifyPropertyChangedObject });

            TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 1, testNotifyPropertyChangedObject.FireChanged);
        }