public void AllProperties_WhenChanged_RaisePropertyChanged()
        {
            var test = new TestItemPresenter(new Mock <ITestItem>().Object);

            test.AssertThatAllProperties().Ignoring(x => x.Model).Ignoring(x => x.DisplayName).RaiseChangeNotification();
        }
 public void AllProperties_WhenChanged_RaisePropertyChanged()
 {
     var test = new TestItemPresenter(new Mock<ITestItem>().Object);
     test.AssertThatAllProperties().Ignoring(x => x.Model).Ignoring(x => x.DisplayName).RaiseChangeNotification();
 }