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

When_Not_ComplexProperty_Children_Trackable_Change_Property_On_Complex_Property_Should_Not_Raise_StatusChanged_Event() private method

        public void When_Not_ComplexProperty_Children_Trackable_Change_Property_On_Complex_Property_Should_Not_Raise_StatusChanged_Event()
        {
            var order = Helper.GetOrder();
            var trackable = order.AsTrackable(makeComplexPropertiesTrackable: false);
            trackable.MonitorEvents();

            trackable.Address.City = "Chicago";

            trackable.ShouldNotRaise("StatusChanged");
        }
IChangeTrackableTests