Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs =================================================================== diff -u -r61af2d41d88907e33ced4083ec53c2327718fd9a -raf81664b5c0cb1af94c61530adbb6cd24fd5229f --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision 61af2d41d88907e33ced4083ec53c2327718fd9a) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/StochasticSoilModelEntityReadExtensionsTest.cs (.../StochasticSoilModelEntityReadExtensionsTest.cs) (revision af81664b5c0cb1af94c61530adbb6cd24fd5229f) @@ -22,10 +22,10 @@ using System; using System.Linq; -using Application.Ringtoets.Storage.BinaryConverters; using Application.Ringtoets.Storage.DbContext; using Application.Ringtoets.Storage.Read; using Application.Ringtoets.Storage.Read.Piping; +using Application.Ringtoets.Storage.Serializers; using Core.Common.Base.Geometry; @@ -64,7 +64,7 @@ StochasticSoilModelEntityId = entityId, Name = testName, SegmentName = testSegmentName, - StochasticSoilModelSegmentPointData = new Point2DBinaryConverter().ToBytes(new Point2D[0]) + StochasticSoilModelSegmentPointXml = new Point2DXmlSerializer().ToXml(new Point2D[0]) }; var collector = new ReadConversionCollector(); @@ -84,7 +84,7 @@ // Setup var entity = new StochasticSoilModelEntity { - StochasticSoilModelSegmentPointData = new Point2DBinaryConverter().ToBytes(new Point2D[0]), + StochasticSoilModelSegmentPointXml = new Point2DXmlSerializer().ToXml(new Point2D[0]), StochasticSoilProfileEntities = { new StochasticSoilProfileEntity @@ -135,7 +135,7 @@ var entity = new StochasticSoilModelEntity { - StochasticSoilModelSegmentPointData = new Point2DBinaryConverter().ToBytes(segmentPoints) + StochasticSoilModelSegmentPointXml = new Point2DXmlSerializer().ToXml(segmentPoints) }; var collector = new ReadConversionCollector(); @@ -152,7 +152,7 @@ // Setup var entity = new StochasticSoilModelEntity { - StochasticSoilModelSegmentPointData = new Point2DBinaryConverter().ToBytes(new Point2D[0]) + StochasticSoilModelSegmentPointXml = new Point2DXmlSerializer().ToXml(new Point2D[0]) }; var collector = new ReadConversionCollector();