// Copyright (C) Stichting Deltares 2018. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using Assembly.Kernel.Interfaces; using Riskeer.AssemblyTool.KernelWrapper.Kernels; using Riskeer.AssemblyTool.KernelWrapper.TestUtil.Kernels.Assembly; using Riskeer.AssemblyTool.KernelWrapper.TestUtil.Kernels.Categories; namespace Riskeer.AssemblyTool.KernelWrapper.TestUtil.Kernels { /// /// Factory that creates assembly tool kernel stubs for testing purposes. /// public class TestAssemblyToolKernelFactory : IAssemblyToolKernelFactory { /// /// Creates a new instance of . /// public TestAssemblyToolKernelFactory() { LastCreatedAssemblyCategoriesKernel = new AssemblyCategoriesKernelStub(); LastCreatedFailureMechanismSectionAssemblyKernel = new FailureMechanismSectionAssemblyKernelStub(); LastCreatedFailureMechanismAssemblyKernel = new FailureMechanismAssemblyKernelStub(); LastCreatedAssessmentSectionAssemblyKernel = new AssessmentSectionAssemblyKernelStub(); LastCreatedCombinedFailureMechanismSectionAssemblyKernel = new CombinedFailureMechanismSectionAssemblyKernelStub(); } /// /// Gets the last created assembly categories kernel. /// public AssemblyCategoriesKernelStub LastCreatedAssemblyCategoriesKernel { get; } /// /// Gets the last created failure mechanism section assembly kernel. /// public FailureMechanismSectionAssemblyKernelStub LastCreatedFailureMechanismSectionAssemblyKernel { get; } /// /// Gets the last created failure mechanism assembly kernel. /// public FailureMechanismAssemblyKernelStub LastCreatedFailureMechanismAssemblyKernel { get; } /// /// Gets the last created assessment section assembly kernel. /// public AssessmentSectionAssemblyKernelStub LastCreatedAssessmentSectionAssemblyKernel { get; } /// /// Gets the last created combined failure mechanism section assembly kernel. /// public CombinedFailureMechanismSectionAssemblyKernelStub LastCreatedCombinedFailureMechanismSectionAssemblyKernel { get; } public ICategoryLimitsCalculator CreateAssemblyCategoriesKernel() { return LastCreatedAssemblyCategoriesKernel; } public IAssessmentResultsTranslator CreateFailureMechanismSectionAssemblyKernel() { return LastCreatedFailureMechanismSectionAssemblyKernel; } public IFailureMechanismResultAssembler CreateFailureMechanismAssemblyKernel() { return LastCreatedFailureMechanismAssemblyKernel; } public IAssessmentGradeAssembler CreateAssessmentSectionAssemblyKernel() { return LastCreatedAssessmentSectionAssemblyKernel; } public ICommonFailureMechanismSectionAssembler CreateCombinedFailureMechanismSectionAssemblyKernel() { return LastCreatedCombinedFailureMechanismSectionAssemblyKernel; } } }