protected override void Context()
 {
     base.Context();
     _outputSelection = new OutputSelections();
     _simulation      = A.Fake <IMoBiSimulation>();
     _presenter       = A.Fake <IOutputSelectionsPresenter>();
     A.CallTo(() => _presenter.StartSelection(_simulation)).Returns(_outputSelection);
     A.CallTo(() => _applicationController.Start <IOutputSelectionsPresenter>()).Returns(_presenter);
 }
예제 #2
0
 public void AttachPresenter(IOutputSelectionsPresenter presenter)
 {
 }