ChangeTracking.Tests.IChangeTrackableTests.When_ComplexProperty_Children_Trackable_Change_Property_On_Complex_Property_Should_Raise_StatusChanged_Event C# (CSharp) Method

When_ComplexProperty_Children_Trackable_Change_Property_On_Complex_Property_Should_Raise_StatusChanged_Event() private method

        public void When_ComplexProperty_Children_Trackable_Change_Property_On_Complex_Property_Should_Raise_StatusChanged_Event()
        {
            var order = Helper.GetOrder();
            var trackable = order.AsTrackable();
            trackable.MonitorEvents();

            trackable.Address.City = "Chicago";

            trackable.ShouldRaise("StatusChanged");
        }
IChangeTrackableTests