Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsStochasticSoilModelTest.cs =================================================================== diff -u -rda4a311b2ac60defe1a27a61c8d151f47268a941 -ra20f5008f39cfa4fd6f94572fd07a011f76609f4 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsStochasticSoilModelTest.cs (.../MacroStabilityInwardsStochasticSoilModelTest.cs) (revision da4a311b2ac60defe1a27a61c8d151f47268a941) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsStochasticSoilModelTest.cs (.../MacroStabilityInwardsStochasticSoilModelTest.cs) (revision a20f5008f39cfa4fd6f94572fd07a011f76609f4) @@ -70,17 +70,17 @@ const string name = "modelName"; // Call - TestDelegate call = () => new MacroStabilityInwardsStochasticSoilModel(name, null); + TestDelegate call = () => new MacroStabilityInwardsStochasticSoilModel(name, Enumerable.Empty()); // Assert - string expectedMessage = $"Het stochastische ondergrond model '{name}'moet een geometrie bevatten."; + string expectedMessage = $"Het stochastische ondergrondmodel '{name}' moet een geometrie bevatten."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } [Test] [TestCase("")] [TestCase("segmentSoilModelName")] - public void Constructor_WithName_ExpectedValues(string segmentSoilModelName) + public void Constructor_WithValidParameters_ExpectedValues(string segmentSoilModelName) { // Setup var random = new Random(21);