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); }
public EditBoxWhiskerAnalysisChartPresenter(ISimulationAnalysisChartView view, IBoxWhiskerChartPresenter boxWhiskerChartPresenter, IBoxWhiskerChartDataCreator boxWhiskerChartDataCreator, IPopulationSimulationAnalysisStarter populationSimulationAnalysisStarter, IPopulationAnalysisTask populationAnalysisTask) : base(view, boxWhiskerChartPresenter, boxWhiskerChartDataCreator, populationSimulationAnalysisStarter, populationAnalysisTask, ApplicationIcons.BoxWhiskerAnalysis) { }
public void AttachPresenter(IBoxWhiskerChartPresenter presenter) { _presenter = presenter; }