protected override void Context()
        {
            base.Context();
            CreateSutForSettings(ParameterGroupingModeId.Simple);
            _compoundTreeNode = A.Fake <ITreeNode>();

            _compoundInSimulationPresenter = A.Fake <ICompoundInSimulationPresenter>();
            A.CallTo(() => _parameterPresenterMapper.MapFrom(_compoundTreeNode)).Returns(_compoundInSimulationPresenter);
            A.CallTo(_compoundInSimulationPresenter).WithReturnType <bool>().Returns(true);
            sut.InitializeWith(_organism, _allParameters);
        }
 public void AttachPresenter(ICompoundInSimulationPresenter presenter)
 {
     //nothing to do
 }