Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs =================================================================== diff -u -r8a0dd3cd494c23f4801327565ddf5d774949e077 -r26f527fb809a2325c8f883ece9da01a8f8040eb3 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision 8a0dd3cd494c23f4801327565ddf5d774949e077) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision 26f527fb809a2325c8f883ece9da01a8f8040eb3) @@ -27,7 +27,7 @@ using Application.Ringtoets.Storage.Serializers; using Core.Common.Base.Geometry; using NUnit.Framework; -using Ringtoets.Piping.Data; +using Ringtoets.Piping.Data.SoilProfile; namespace Application.Ringtoets.Storage.Test.Read.Piping { @@ -81,7 +81,7 @@ var collector = new ReadConversionCollector(); // Call - StochasticSoilModel model = entity.Read(collector); + PipingStochasticSoilModel model = entity.Read(collector); // Assert Assert.IsNotNull(model); @@ -127,7 +127,7 @@ var collector = new ReadConversionCollector(); // Call - StochasticSoilModel model = entity.Read(collector); + PipingStochasticSoilModel model = entity.Read(collector); // Assert Assert.AreEqual(2, model.StochasticSoilProfiles.Count); @@ -155,7 +155,7 @@ var collector = new ReadConversionCollector(); // Call - StochasticSoilModel model = entity.Read(collector); + PipingStochasticSoilModel model = entity.Read(collector); // Assert CollectionAssert.AreEqual(segmentPoints, model.Geometry); @@ -173,8 +173,8 @@ var collector = new ReadConversionCollector(); // Call - StochasticSoilModel soilModel1 = entity.Read(collector); - StochasticSoilModel soilModel2 = entity.Read(collector); + PipingStochasticSoilModel soilModel1 = entity.Read(collector); + PipingStochasticSoilModel soilModel2 = entity.Read(collector); // Assert Assert.AreSame(soilModel1, soilModel2);