Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -rafa720a0da947ce7179500fefc71203d773de21e -r26f527fb809a2325c8f883ece9da01a8f8040eb3 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision afa720a0da947ce7179500fefc71203d773de21e) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 26f527fb809a2325c8f883ece9da01a8f8040eb3) @@ -54,13 +54,12 @@ using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.MacroStabilityInwards.Data; using Ringtoets.Piping.Data; +using Ringtoets.Piping.Data.SoilProfile; using Ringtoets.Piping.Primitives; using Ringtoets.Revetment.Data; using Ringtoets.StabilityPointStructures.Data; using Ringtoets.StabilityStoneCover.Data; using Ringtoets.WaveImpactAsphaltCover.Data; -using StochasticSoilModelCollection = Ringtoets.Piping.Data.StochasticSoilModelCollection; -using StochasticSoilProfile = Ringtoets.Piping.Data.StochasticSoilProfile; namespace Application.Ringtoets.Storage.Test.IntegrationTests { @@ -500,8 +499,8 @@ CollectionAssert.AreEqual(expectedReferenceLine.Points, actualReferenceLine.Points); } - private static void AssertStochasticSoilModels(StochasticSoilModelCollection expectedModels, - StochasticSoilModelCollection actualModels) + private static void AssertStochasticSoilModels(PipingStochasticSoilModelCollection expectedModels, + PipingStochasticSoilModelCollection actualModels) { Assert.Less(0, actualModels.Count); @@ -522,8 +521,8 @@ CollectionAssert.AreEqual(expectedSoilModelSegmentPoints, actualSoilModelSegmentPoints); } - private static void AssertStochasticSoilProfiles(IEnumerable expectedStochasticSoilProfiles, - IEnumerable actualStochasticSoilProfiles) + private static void AssertStochasticSoilProfiles(IEnumerable expectedStochasticSoilProfiles, + IEnumerable actualStochasticSoilProfiles) { Assert.Less(0, actualStochasticSoilProfiles.Count()); @@ -532,7 +531,7 @@ AssertPipingSoilProfile); } - private static void AssertPipingSoilProfile(StochasticSoilProfile expectedProfile, StochasticSoilProfile actualProfile) + private static void AssertPipingSoilProfile(PipingStochasticSoilProfile expectedProfile, PipingStochasticSoilProfile actualProfile) { Assert.AreEqual(expectedProfile.Probability, actualProfile.Probability); Assert.AreEqual(expectedProfile.SoilProfile.Bottom, actualProfile.SoilProfile.Bottom);