예제 #1
0
 public MergeLists(SyncActionFactoryBase actionFactory, HistoryProviderBase historyProvider)
 {
     this.actionFactory   = actionFactory;
     this.historyProvider = historyProvider;
 }
 public MergeListsTests()
 {
     this.historyProvider = Substitute.For <HistoryProviderBase>();
     this.processor       = new MergeLists(new ComparableSyncActionFactory(), this.historyProvider);
 }