Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/GrassCoverErosionInwards/DikeProfileEntityReadExtensionsTest.cs =================================================================== diff -u -rbc7cd9cbf90d04580e6b3542c56edc590867c43a -raf81664b5c0cb1af94c61530adbb6cd24fd5229f --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/GrassCoverErosionInwards/DikeProfileEntityReadExtensionsTest.cs (.../DikeProfileEntityReadExtensionsTest.cs) (revision bc7cd9cbf90d04580e6b3542c56edc590867c43a) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/GrassCoverErosionInwards/DikeProfileEntityReadExtensionsTest.cs (.../DikeProfileEntityReadExtensionsTest.cs) (revision af81664b5c0cb1af94c61530adbb6cd24fd5229f) @@ -22,10 +22,10 @@ using System; using System.Collections; -using Application.Ringtoets.Storage.BinaryConverters; using Application.Ringtoets.Storage.DbContext; using Application.Ringtoets.Storage.Read; using Application.Ringtoets.Storage.Read.GrassCoverErosionInwards; +using Application.Ringtoets.Storage.Serializers; using Core.Common.Base.Geometry; @@ -73,8 +73,8 @@ Orientation = 45.67, BreakWaterHeight = null, BreakWaterType = null, - ForeShoreData = new Point2DBinaryConverter().ToBytes(foreshorePoints), - DikeGeometryData = new RoughnessPointBinaryConverter().ToBytes(roughnessPoints), + ForeShoreXml = new Point2DXmlSerializer().ToXml(foreshorePoints), + DikeGeometryXml = new RoughnessPointXmlSerializer().ToXml(roughnessPoints), DikeHeight = 1.2, X = 3.4, Y = 5.6, @@ -121,8 +121,8 @@ Orientation = 360.0, BreakWaterHeight = height, BreakWaterType = Convert.ToByte(type), - ForeShoreData = new Point2DBinaryConverter().ToBytes(foreshorePoints), - DikeGeometryData = new RoughnessPointBinaryConverter().ToBytes(roughnessPoints), + ForeShoreXml = new Point2DXmlSerializer().ToXml(foreshorePoints), + DikeGeometryXml = new RoughnessPointXmlSerializer().ToXml(roughnessPoints), DikeHeight = 4.5, X = 93.0, Y = 945.6,