Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/StochasticSoilModelEntityReadExtensionsTest.cs =================================================================== diff -u -rfe68c3f7cae5946b93d9e27eb532b176a6b26b84 -r4478bdf539df278f9e2aac0f9fe683c34ac55335 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision fe68c3f7cae5946b93d9e27eb532b176a6b26b84) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision 4478bdf539df278f9e2aac0f9fe683c34ac55335) @@ -105,6 +105,27 @@ // Assert Assert.AreEqual(2, model.StochasticSoilProfiles.Count); - } + } + + [Test] + public void Read_WithCollectorWithStochasticSoilModelSegmentPointEntity_ReturnsNewStochasticSoilModelWithGeometryPoints() + { + // Setup + var entity = new StochasticSoilModelEntity + { + StochasticSoilModelSegmentPointEntities = + { + new StochasticSoilModelSegmentPointEntity(), + new StochasticSoilModelSegmentPointEntity() + } + }; + var collector = new ReadConversionCollector(); + + // Call + var model = entity.Read(collector); + + // Assert + Assert.AreEqual(2, model.Geometry.Count); + } } } \ No newline at end of file