private void SimulateBindingEvent(SolutionBindingEventType eventType, BindingConfiguration newConfiguration)
 {
     if (eventType == SolutionBindingEventType.SolutionBindingUpdated)
     {
         activeSolutionBoundTracker.CurrentConfiguration = newConfiguration;
         activeSolutionBoundTracker.SimulateSolutionBindingUpdated();
     }
     else
     {
         activeSolutionBoundTracker.SimulateSolutionBindingChanged(
             new ActiveSolutionBindingEventArgs(newConfiguration));
     }
 }
 public void SimulateBindingUpdated()
 {
     solutionBoundTracker.SimulateSolutionBindingUpdated();
 }