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

ReturnsFalseForNonCollectionChangedItem() private method

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

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