Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilProfileTest.cs =================================================================== diff -u -rd47809e3a8fadff2be5b10056b79b16dc27eeca2 -r4ab7b653ebbf2ff9962d1e6a326029d07c225548 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilProfileTest.cs (.../StochasticSoilProfileTest.cs) (revision d47809e3a8fadff2be5b10056b79b16dc27eeca2) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/StochasticSoilProfileTest.cs (.../StochasticSoilProfileTest.cs) (revision 4ab7b653ebbf2ff9962d1e6a326029d07c225548) @@ -24,6 +24,7 @@ using Core.Common.Base; using Core.Common.TestUtil; using NUnit.Framework; +using Rhino.Mocks; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil; using Ringtoets.MacroStabilityInwards.Primitives; @@ -203,25 +204,6 @@ } [Test] - public void ToString_WithNullName_ReturnsStringEmpty() - { - // Setup - var stochasticSoilProfile = new StochasticSoilProfile(0.0, SoilProfileType.SoilProfile1D, 0) - { - SoilProfile = new MacroStabilityInwardsSoilProfile1D(null, 0.0, new[] - { - new MacroStabilityInwardsSoilLayer1D(0.0) - }, SoilProfileType.SoilProfile1D, 0) - }; - - // Call - string text = stochasticSoilProfile.ToString(); - - // Assert - Assert.IsEmpty(text); - } - - [Test] [TestCase("")] [TestCase("some name")] public void ToString_WithName_ReturnsName(string name)