Channel9Downloader.Test.Utils.Assertion.PropertyChangedIsNotCalled C# (CSharp) Method

PropertyChangedIsNotCalled() public static method

Asserts that property changed is not called for the specified property when the value of the property is set to the specified value.
public static PropertyChangedIsNotCalled ( INotifyPropertyChanged observableObject, string propertyName, object value ) : void
observableObject INotifyPropertyChanged The object that will be observed.
propertyName string The name of the property that will be observed.
value object The value to which the property should be set.
return void
        public static void PropertyChangedIsNotCalled(
            INotifyPropertyChanged observableObject,
            string propertyName,
            object value)
        {
            PropertyChangedIsCalled(observableObject, propertyName, value, false);
        }