public void ReturnsFalseForNullObject() { Assert.IsFalse(ChangeNotificationWrapper.IsUsefulForObject(null)); }
public void ReturnsFalseForObjectNotImplementingINotifyPropertyChanged() { Assert.IsFalse(ChangeNotificationWrapper.IsUsefulForObject(15)); }
public void ReturnsTrueForObjectImplementingINotifyPropertyChanged() { Assert.IsTrue(ChangeNotificationWrapper.IsUsefulForObject(new TestModel())); }