コード例 #1
0
 protected override void Context()
 {
     _view = A.Fake <IBoxWhiskerAnalysisResultsView>();
     _fieldSelectionPresenter    = A.Fake <IBoxWhiskerFieldSelectionPresenter>();
     _boxWhiskerChartPresenter   = A.Fake <IBoxWhiskerChartPresenter>();
     _boxWhiskerChartDataCreator = A.Fake <IBoxWhiskerChartDataCreator>();
     _populationAnalysisTask     = A.Fake <IPopulationAnalysisTask>();
     sut = new BoxWhiskerAnalysisResultsPresenter(_view, _fieldSelectionPresenter, _boxWhiskerChartPresenter, _boxWhiskerChartDataCreator, _populationAnalysisTask);
 }
コード例 #2
0
 public EditBoxWhiskerAnalysisChartPresenter(ISimulationAnalysisChartView view, IBoxWhiskerChartPresenter boxWhiskerChartPresenter, IBoxWhiskerChartDataCreator boxWhiskerChartDataCreator,
                                             IPopulationSimulationAnalysisStarter populationSimulationAnalysisStarter, IPopulationAnalysisTask populationAnalysisTask)
     : base(view, boxWhiskerChartPresenter, boxWhiskerChartDataCreator, populationSimulationAnalysisStarter, populationAnalysisTask, ApplicationIcons.BoxWhiskerAnalysis)
 {
 }
コード例 #3
0
 public void AttachPresenter(IBoxWhiskerChartPresenter presenter)
 {
     _presenter = presenter;
 }