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

PropertyChangedIsCalled() public static method

Asserts that property changed is called for the specified property when the value of the property is set to the specified value.
public static PropertyChangedIsCalled ( 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 PropertyChangedIsCalled(
            INotifyPropertyChanged observableObject,
            string propertyName,
            object value)
        {
            PropertyChangedIsCalled(observableObject, propertyName, value, true);
        }

Same methods

Assertion::PropertyChangedIsCalled ( INotifyPropertyChanged observableObject, string propertyName, object value, bool isRaised ) : void