Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSoilProfileTest.cs =================================================================== diff -u -r2ed0db8299205024c1c6b1eb10da05f588f5d649 -r3ab528e2b002824d82df7b45c2901c4f96fa148c --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSoilProfileTest.cs (.../PipingSoilProfileTest.cs) (revision 2ed0db8299205024c1c6b1eb10da05f588f5d649) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSoilProfileTest.cs (.../PipingSoilProfileTest.cs) (revision 3ab528e2b002824d82df7b45c2901c4f96fa148c) @@ -27,6 +27,7 @@ using NUnit.Framework; using Ringtoets.Piping.Data.Properties; using Ringtoets.Piping.Primitives; +using PrimitivesResources = Ringtoets.Piping.Primitives.Properties.Resources; namespace Ringtoets.Piping.Data.Test { @@ -65,7 +66,7 @@ TestDelegate test = () => new PipingSoilProfile(String.Empty, Double.NaN, new Collection(), SoilProfileType.SoilProfile1D, 0); // Assert - TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, Resources.Error_Cannot_Construct_PipingSoilProfile_Without_Layers); + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, PrimitivesResources.Error_Cannot_Construct_PipingSoilProfile_Without_Layers); } [Test] @@ -75,7 +76,7 @@ TestDelegate test = () => new PipingSoilProfile(String.Empty, Double.NaN, null, SoilProfileType.SoilProfile1D, 0); // Assert - TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, Resources.Error_Cannot_Construct_PipingSoilProfile_Without_Layers); + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, PrimitivesResources.Error_Cannot_Construct_PipingSoilProfile_Without_Layers); } [Test] @@ -123,7 +124,7 @@ TestDelegate test = () => new PipingSoilProfile(String.Empty, bottom, pipingSoilLayers, SoilProfileType.SoilProfile1D, 0); // Assert - TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "Eén of meerdere lagen hebben een top onder de bodem van het profiel."); + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "Eén of meerdere lagen hebben een top onder de bodem van de ondergrondschematisatie."); } [Test]