public void specific_values_can_be_set_on_individual_properties() { var sut = new NotificationOnAllProperties(); sut.AssertThatAllProperties() .SetValue(x => x.String, "some_string").RaiseChangeNotification(); sut.String.ShouldBe("some_string"); }
public void the_assertion_will_pass_if_notification_is_correct() { var sut = new NotificationOnAllProperties(); sut.AssertThatAllProperties().RaiseChangeNotification(); }