Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/MacroStabilityInwardsCalculationConfigurationHelperTest.cs =================================================================== diff -u -rb13759ad077f9e2b4104de000b5bdeafa9abe358 -raf575930a392dbf1fb1d5073f3df48110af72686 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/MacroStabilityInwardsCalculationConfigurationHelperTest.cs (.../MacroStabilityInwardsCalculationConfigurationHelperTest.cs) (revision b13759ad077f9e2b4104de000b5bdeafa9abe358) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/MacroStabilityInwardsCalculationConfigurationHelperTest.cs (.../MacroStabilityInwardsCalculationConfigurationHelperTest.cs) (revision af575930a392dbf1fb1d5073f3df48110af72686) @@ -154,38 +154,6 @@ } [Test] - public void GetStochasticSoilModelsForSurfaceLine_NoSoilProfiles_ReturnEmpty() - { - // Setup - var soilModel = new MacroStabilityInwardsStochasticSoilModel("A", new[] - { - new Point2D(1.0, 0.0), - new Point2D(5.0, 0.0) - }, Enumerable.Empty()); - - var availableSoilModels = new[] - { - soilModel - }; - - var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty); - surfaceLine.SetGeometry(new[] - { - new Point3D(3.0, 5.0, 0.0), - new Point3D(3.0, 0.0, 1.0), - new Point3D(3.0, -5.0, 0.0) - }); - - // Call - IEnumerable result = MacroStabilityInwardsCalculationConfigurationHelper.GetStochasticSoilModelsForSurfaceLine( - surfaceLine, - availableSoilModels); - - // Assert - CollectionAssert.IsEmpty(result); - } - - [Test] public void GetStochasticSoilModelsForSurfaceLine_SoilModelGeometryNotIntersecting_ReturnEmpty() { // Setup @@ -439,52 +407,6 @@ } [Test] - public void GenerateCalculationItemsStructure_NoSoilProfiles_LogWarning() - { - // Setup - var soilModel = new MacroStabilityInwardsStochasticSoilModel("A", new[] - { - new Point2D(1.0, 0.0), - new Point2D(5.0, 0.0) - }, Enumerable.Empty()); - - var availableSoilModels = new[] - { - soilModel - }; - - const string testName = "testName"; - var surfaceLine = new MacroStabilityInwardsSurfaceLine(testName); - surfaceLine.SetGeometry(new[] - { - new Point3D(3.0, 5.0, 0.0), - new Point3D(3.0, 0.0, 1.0), - new Point3D(3.0, -5.0, 0.0) - }); - - MacroStabilityInwardsSurfaceLine[] surfaceLines = - { - surfaceLine - }; - - IEnumerable result = null; - // Call - Action call = () => - { - result = MacroStabilityInwardsCalculationConfigurationHelper.GenerateCalculationItemsStructure( - surfaceLines, - availableSoilModels).ToArray(); - }; - - // Assert - Tuple expectedMessage = Tuple.Create( - $"Geen ondergrondschematisaties gevonden voor profielschematisatie '{testName}'. De profielschematisatie is overgeslagen.", - LogLevelConstant.Warn); - TestHelper.AssertLogMessageWithLevelIsGenerated(call, expectedMessage); - CollectionAssert.IsEmpty(result); - } - - [Test] public void GenerateCalculationItemsStructure_SoilModelGeometryNotIntersecting_LogWarning() { // Setup