Example #1
0
        public void PropertySortDescription_CustomName_Raise_DisplayName_PropertyChanged()
        {
            PropertySortDescription psd = new PropertySortDescription();

            psd.AssertPropertyChanged("Setting CustomName", () => psd.CustomName = "Test", "CustomName", "DisplayName");
        }
Example #2
0
        public void PropertySortDescription_SortOrder_Raise_PropertyChanged()
        {
            PropertySortDescription psd = new PropertySortDescription();

            psd.AssertPropertyChanged("Setting SortOrder", () => psd.SortOrder = SortOrder.Descending, "SortOrder");
        }