public void Change_Property_From_Null_To_Value_Should_Not_Throw() { var trackable = new Order { Id = 321, CustomerNumber = null }.AsTrackable(); trackable.Invoking(o => o.CustomerNumber = "Test").ShouldNotThrow<NullReferenceException>(); }