Catel.Test.Data.ChangeNotificationWrapperFacts.TheSupportsNotifyCollectionChangedProperty.ReturnsFalseForNonCollectionChangedItem C# (CSharp) Méthode

ReturnsFalseForNonCollectionChangedItem() private méthode

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

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