protected override void Context()
 {
     _dialogCreator = A.Fake <IDialogCreator>();
     _view          = A.Fake <ISourceFileControl>();
     sut            = new SourceFilePresenter(_dialogCreator, _view);
 }
Example #2
0
 public void AddSourceFileControl(ISourceFileControl sourceFileControl)
 {
     sourceFilePanelControl.FillWith(sourceFileControl);
 }