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 BoxWhiskerAnalysisChartTeXBuilder(ITeXBuilderRepository builderRepository, IBoxWhiskerChartDataCreator boxWhiskerChartDataCreator) : base(builderRepository, boxWhiskerChartDataCreator, AggregationFunctions.BoxWhisker90Aggregation) { }
public BoxWhiskerAnalysisResultsPresenter(IBoxWhiskerAnalysisResultsView view, IBoxWhiskerFieldSelectionPresenter fieldSelectionPresenter, IBoxWhiskerChartPresenter boxWhiskerChartPresenter, IBoxWhiskerChartDataCreator boxWhiskerChartDataCreator, IPopulationAnalysisTask populationAnalysisTask) : base(view, fieldSelectionPresenter, boxWhiskerChartPresenter, boxWhiskerChartDataCreator, populationAnalysisTask) { }