Exemplo n.º 1
0
 public void observer_for_importing_registry_should_contain_messages_for_imported_calls()
 {
     _importActions.Each(a =>
     {
         _parentObserver.GetLog(a)
         .ShouldHaveTheSameElementsAs(_importObserver.GetLog(a));
     });
 }
Exemplo n.º 2
0
 public void Import(IConfigurationObserver import)
 {
     import.RecordedCalls().Each(call => import.GetLog(call)
                                 .Each(log => _importingObserver.RecordCallStatus(call, log)));
 }
Exemplo n.º 3
0
 public void Import(IConfigurationObserver import)
 {
     import.RecordedCalls().Each(call => import.GetLog(call)
         .Each(log => _importingObserver.RecordCallStatus(call, log)));
 }