Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculator.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculator.cs (.../FailureMechanismSectionAssemblyCalculator.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculator.cs (.../FailureMechanismSectionAssemblyCalculator.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -64,7 +64,7 @@ } catch (Exception e) { - throw new FailureMechanismSectionAssessmentAssemblyCalculatorException(e.Message, e); + throw new FailureMechanismSectionAssemblyCalculatorException(e.Message, e); } } @@ -80,7 +80,7 @@ } catch (Exception e) { - throw new FailureMechanismSectionAssessmentAssemblyCalculatorException(e.Message, e); + throw new FailureMechanismSectionAssemblyCalculatorException(e.Message, e); } } } Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorException.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorException.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorException.cs (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -0,0 +1,68 @@ +// Copyright (C) Stichting Deltares 2017. 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 System; +using System.Runtime.Serialization; + +namespace Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assessments +{ + /// + /// The exception that is thrown when an error occurs while performing a failure mechanism section assembly. + /// + [Serializable] + public class FailureMechanismSectionAssemblyCalculatorException : Exception + { + /// + /// Initializes a new instance of the class. + /// + public FailureMechanismSectionAssemblyCalculatorException() {} + + /// + /// Initializes a new instance of the class + /// with a specified error message. + /// + /// The error message that explains the reason for the exception. + public FailureMechanismSectionAssemblyCalculatorException(string message) : base(message) {} + + /// + /// Initializes a new instance of the class + /// with a specified error message and a reference to the inner exception that is + /// the cause of this exception. + /// + /// The error message that explains the reason for the exception. + /// The exception that is the cause of the current exception, + /// or a null reference if no inner exception is specified. + public FailureMechanismSectionAssemblyCalculatorException(string message, Exception inner) : base(message, inner) {} + + /// + /// Initializes a new instance of with + /// serialized data. + /// The that holds the serialized + /// object data about the exception being thrown. + /// The that contains contextual + /// information about the source or destination. + /// The parameter is + /// null. + /// The class name is null or + /// is zero (0). + protected FailureMechanismSectionAssemblyCalculatorException(SerializationInfo info, StreamingContext context) : base(info, context) {} + } +} \ No newline at end of file Fisheye: Tag 748636dbdbc3a1c324f3c868ab1ce09e759845ef refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/FailureMechanismSectionAssessmentAssemblyCalculatorException.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/IFailureMechanismSectionAssemblyCalculator.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/IFailureMechanismSectionAssemblyCalculator.cs (.../IFailureMechanismSectionAssemblyCalculator.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assessments/IFailureMechanismSectionAssemblyCalculator.cs (.../IFailureMechanismSectionAssemblyCalculator.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -41,7 +41,7 @@ /// /// The to assemble for. /// A . - /// Thrown when + /// Thrown when /// an error occurs when performing the assembly. FailureMechanismSectionAssembly AssembleSimpleAssessment(SimpleAssessmentResultType input); @@ -50,7 +50,7 @@ /// /// The to assemble for. /// A . - /// Thrown when + /// Thrown when /// an error occurs when performing the assembly. FailureMechanismSectionAssembly AssembleSimpleAssessment(SimpleAssessmentResultValidityOnlyType input); } Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -15,7 +15,7 @@ - + Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/AssemblyToolCalculatorFactoryTest.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/AssemblyToolCalculatorFactoryTest.cs (.../AssemblyToolCalculatorFactoryTest.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/AssemblyToolCalculatorFactoryTest.cs (.../AssemblyToolCalculatorFactoryTest.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -88,7 +88,7 @@ } [Test] - public void CreateFailureMechanismSectionAssessmentAssemblyCalculator_WithKernelFactory_ReturnsFailureMechanismSectionAssessmentAssemblyCalculator() + public void CreateFailureMechanismSectionAssemblyCalculator_WithKernelFactory_ReturnsFailureMechanismSectionAssemblyCalculator() { // Setup IAssemblyToolCalculatorFactory factory = AssemblyToolCalculatorFactory.Instance; Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorExceptionTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorExceptionTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorExceptionTest.cs (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -0,0 +1,32 @@ +// Copyright (C) Stichting Deltares 2017. 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 System; +using Core.Common.TestUtil; +using NUnit.Framework; +using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assessments; + +namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Calculators.Assessments +{ + [TestFixture] + public class FailureMechanismSectionAssemblyCalculatorExceptionTest + : CustomExceptionDesignGuidelinesTestFixture {} +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorTest.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorTest.cs (.../FailureMechanismSectionAssemblyCalculatorTest.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorTest.cs (.../FailureMechanismSectionAssemblyCalculatorTest.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -67,7 +67,7 @@ } [Test] - public void AssembleSimpleAssessment_WithInvalidEnumInput_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessment_WithInvalidEnumInput_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -81,7 +81,7 @@ // Assert const string expectedMessage = "The value of argument 'input' (99) is invalid for Enum type 'SimpleAssessmentResultType'."; - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); StringAssert.StartsWith(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); } @@ -131,7 +131,7 @@ } [Test] - public void AssembleSimpleAssessment_KernelWithInvalidOutput_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessment_KernelWithInvalidOutput_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -148,14 +148,14 @@ // Assert const string expectedMessage = "The value of argument 'originalGroup' (99) is invalid for Enum type 'FailureMechanismSectionCategoryGroup'."; - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); StringAssert.StartsWith(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); } } [Test] - public void AssembleSimpleAssessment_KernelThrowsException_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessment_KernelThrowsException_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -170,14 +170,14 @@ TestDelegate test = () => calculator.AssembleSimpleAssessment(SimpleAssessmentResultType.AssessFurther); // Assert - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); Assert.IsInstanceOf(exception.InnerException); Assert.AreEqual(exception.InnerException.Message, exception.Message); } } [Test] - public void AssembleSimpleAssessmentValidityOnly_WithInvalidEnumInput_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessmentValidityOnly_WithInvalidEnumInput_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -191,7 +191,7 @@ // Assert const string expectedMessage = "The value of argument 'input' (99) is invalid for Enum type 'SimpleAssessmentResultValidityOnlyType'."; - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); StringAssert.StartsWith(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); } @@ -241,7 +241,7 @@ } [Test] - public void AssembleSimpleAssessmentValidityOnly_KernelWithInvalidOutput_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessmentValidityOnly_KernelWithInvalidOutput_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -258,14 +258,14 @@ // Assert const string expectedMessage = "The value of argument 'originalGroup' (99) is invalid for Enum type 'FailureMechanismSectionCategoryGroup'."; - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); StringAssert.StartsWith(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); } } [Test] - public void ValidityOnlyAssembleSimpleAssessment_KernelThrowsException_ThrowFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void ValidityOnlyAssembleSimpleAssessment_KernelThrowsException_ThrowFailureMechanismSectionAssemblyCalculatorException() { // Setup using (new AssemblyToolKernelFactoryConfig()) @@ -280,7 +280,7 @@ TestDelegate test = () => calculator.AssembleSimpleAssessment(SimpleAssessmentResultValidityOnlyType.Applicable); // Assert - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); Assert.IsInstanceOf(exception.InnerException); Assert.AreEqual(exception.InnerException.Message, exception.Message); } Fisheye: Tag 748636dbdbc3a1c324f3c868ab1ce09e759845ef refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assessments/FailureMechanismSectionAssessmentAssemblyCalculatorExceptionTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -22,7 +22,7 @@ - + Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStubTest.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStubTest.cs (.../FailureMechanismSectionAssemblyCalculatorStubTest.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStubTest.cs (.../FailureMechanismSectionAssemblyCalculatorStubTest.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -86,7 +86,7 @@ } [Test] - public void AssembleSimpleAssessment_ThrowExceptionOnCalculateTrue_ThrowsFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessment_ThrowExceptionOnCalculateTrue_ThrowsFailureMechanismSectionAssemblyCalculatorException() { // Setup var calculator = new FailureMechanismSectionAssemblyCalculatorStub @@ -98,7 +98,7 @@ TestDelegate test = () => calculator.AssembleSimpleAssessment((SimpleAssessmentResultType) 0); // Assert - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); Assert.AreEqual("Message", exception.Message); Assert.IsNotNull(exception.InnerException); } @@ -148,7 +148,7 @@ } [Test] - public void AssembleSimpleAssessmentValidityOnly_ThrowExceptionOnCalculateTrue_ThrowsFailureMechanismSectionAssessmentAssemblyCalculatorException() + public void AssembleSimpleAssessmentValidityOnly_ThrowExceptionOnCalculateTrue_ThrowsFailureMechanismSectionAssemblyCalculatorException() { // Setup var calculator = new FailureMechanismSectionAssemblyCalculatorStub @@ -160,7 +160,7 @@ TestDelegate test = () => calculator.AssembleSimpleAssessment((SimpleAssessmentResultValidityOnlyType) 0); // Assert - var exception = Assert.Throws(test); + var exception = Assert.Throws(test); Assert.AreEqual("Message", exception.Message); Assert.IsNotNull(exception.InnerException); } Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/TestAssemblyToolCalculatorFactoryTest.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/TestAssemblyToolCalculatorFactoryTest.cs (.../TestAssemblyToolCalculatorFactoryTest.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/TestAssemblyToolCalculatorFactoryTest.cs (.../TestAssemblyToolCalculatorFactoryTest.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -59,7 +59,7 @@ } [Test] - public void CreateFailureMechanismSectionAssessmentAssemblyCalculator_Always_ReturnStub() + public void CreateFailureMechanismSectionAssemblyCalculator_Always_ReturnStub() { // Setup var factory = new TestAssemblyToolCalculatorFactory(); Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Kernels/TestAssemblyToolKernelFactoryTest.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Kernels/TestAssemblyToolKernelFactoryTest.cs (.../TestAssemblyToolKernelFactoryTest.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Kernels/TestAssemblyToolKernelFactoryTest.cs (.../TestAssemblyToolKernelFactoryTest.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -56,7 +56,7 @@ } [Test] - public void CreateFailureMechanismSectionAssemblyKernel_Always_ReturnLastCreatedFailureMechanismSectionAssessmentAssemblyKernel() + public void CreateFailureMechanismSectionAssemblyKernel_Always_ReturnLastCreatedFailureMechanismSectionAssemblyKernel() { // Setup var factory = new TestAssemblyToolKernelFactory(); Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStub.cs =================================================================== diff -u -r9ec0b6f985cdd1b151e4081ca256194eb09a32f0 -r748636dbdbc3a1c324f3c868ab1ce09e759845ef --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStub.cs (.../FailureMechanismSectionAssemblyCalculatorStub.cs) (revision 9ec0b6f985cdd1b151e4081ca256194eb09a32f0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assessments/FailureMechanismSectionAssemblyCalculatorStub.cs (.../FailureMechanismSectionAssemblyCalculatorStub.cs) (revision 748636dbdbc3a1c324f3c868ab1ce09e759845ef) @@ -55,7 +55,7 @@ { if (ThrowExceptionOnCalculate) { - throw new FailureMechanismSectionAssessmentAssemblyCalculatorException("Message", new Exception()); + throw new FailureMechanismSectionAssemblyCalculatorException("Message", new Exception()); } SimpleAssessmentInput = input; @@ -68,7 +68,7 @@ { if (ThrowExceptionOnCalculate) { - throw new FailureMechanismSectionAssessmentAssemblyCalculatorException("Message", new Exception()); + throw new FailureMechanismSectionAssemblyCalculatorException("Message", new Exception()); } SimpleAssessmentValidityOnlyInput = input;