Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs =================================================================== diff -u -rbb740f0278e4ce8ea6f6bbeaf02e550609eae576 -r2628207e6940f66f4bdec0fe517ebc8d043797d1 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs (.../AssemblyCategoriesCalculator.cs) (revision bb740f0278e4ce8ea6f6bbeaf02e550609eae576) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs (.../AssemblyCategoriesCalculator.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) @@ -90,7 +90,7 @@ } } - public IEnumerable CalculateGeoTechnicFailureMechanismSectionCategories(double signalingNorm, + public IEnumerable CalculateGeotechnicFailureMechanismSectionCategories(double signalingNorm, double lowerLimitNorm, double probabilityDistributionFactor, double n) Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs =================================================================== diff -u -rbb740f0278e4ce8ea6f6bbeaf02e550609eae576 -r2628207e6940f66f4bdec0fe517ebc8d043797d1 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs (.../IAssemblyCategoriesCalculator.cs) (revision bb740f0278e4ce8ea6f6bbeaf02e550609eae576) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs (.../IAssemblyCategoriesCalculator.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) @@ -67,7 +67,7 @@ /// . /// Thrown when an error occurs /// when performing the calculation. - IEnumerable CalculateGeoTechnicFailureMechanismSectionCategories( + IEnumerable CalculateGeotechnicFailureMechanismSectionCategories( double signalingNorm, double lowerLimitNorm, double probabilityDistributionFactor, double n); } } \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs =================================================================== diff -u -r48a5b5128b630083e746e1ba397b28916bc74ac3 -r2628207e6940f66f4bdec0fe517ebc8d043797d1 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs (.../AssemblyCategoriesCalculatorStubTest.cs) (revision 48a5b5128b630083e746e1ba397b28916bc74ac3) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs (.../AssemblyCategoriesCalculatorStubTest.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) @@ -183,13 +183,13 @@ } [Test] - public void CalculateGeoTechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateFalse_ReturnsCategories() + public void CalculateGeotechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateFalse_ReturnsCategories() { // Setup var calculator = new AssemblyCategoriesCalculatorStub(); // Call - FailureMechanismSectionAssemblyCategory[] result = calculator.CalculateGeoTechnicFailureMechanismSectionCategories(0, 0, 0, 0).ToArray(); + FailureMechanismSectionAssemblyCategory[] result = calculator.CalculateGeotechnicFailureMechanismSectionCategories(0, 0, 0, 0).ToArray(); // Assert Assert.AreEqual(3, result.Length); @@ -214,7 +214,7 @@ } [Test] - public void CalculateGeoTechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateFalse_SetsInput() + public void CalculateGeotechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateFalse_SetsInput() { // Setup var random = new Random(39); @@ -226,7 +226,7 @@ var calculator = new AssemblyCategoriesCalculatorStub(); // Call - calculator.CalculateGeoTechnicFailureMechanismSectionCategories(signalingNorm, lowerLimitNorm, probabilityDistributionFactor, n); + calculator.CalculateGeotechnicFailureMechanismSectionCategories(signalingNorm, lowerLimitNorm, probabilityDistributionFactor, n); // Assert Assert.AreEqual(signalingNorm, calculator.SignalingNorm); @@ -236,7 +236,7 @@ } [Test] - public void CalculateGeoTechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateTrue_ThrowsAssemblyCategoriesCalculatorException() + public void CalculateGeotechnicFailureMechanismSectionCategories_ThrowExceptionOnCalculateTrue_ThrowsAssemblyCategoriesCalculatorException() { // Setup var calculator = new AssemblyCategoriesCalculatorStub @@ -245,7 +245,7 @@ }; // Call - TestDelegate test = () => calculator.CalculateGeoTechnicFailureMechanismSectionCategories(0, 0, 0, 0); + TestDelegate test = () => calculator.CalculateGeotechnicFailureMechanismSectionCategories(0, 0, 0, 0); // Assert var exception = Assert.Throws(test); Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs =================================================================== diff -u -r48a5b5128b630083e746e1ba397b28916bc74ac3 -r2628207e6940f66f4bdec0fe517ebc8d043797d1 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs (.../AssemblyCategoriesCalculatorStub.cs) (revision 48a5b5128b630083e746e1ba397b28916bc74ac3) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs (.../AssemblyCategoriesCalculatorStub.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) @@ -107,7 +107,7 @@ }); } - public IEnumerable CalculateGeoTechnicFailureMechanismSectionCategories(double signalingNorm, double lowerLimitNorm, + public IEnumerable CalculateGeotechnicFailureMechanismSectionCategories(double signalingNorm, double lowerLimitNorm, double probabilityDistributionFactor, double n) { if (ThrowExceptionOnCalculate)