Catel.Test.Data.ChangeNotificationWrapperFacts.TheSupportsNotifyCollectionChangedProperty.ReturnsTrueForCollectionChangedItem C# (CSharp) Method

ReturnsTrueForCollectionChangedItem() private method

private ReturnsTrueForCollectionChangedItem ( ) : void
return void
            public void ReturnsTrueForCollectionChangedItem()
            {
                var collection = new ObservableCollection<int>();
                var wrapper = new ChangeNotificationWrapper(collection);

                Assert.IsTrue(wrapper.SupportsNotifyCollectionChanged);
            }
ChangeNotificationWrapperFacts.TheSupportsNotifyCollectionChangedProperty