Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs =================================================================== diff -u -r61af2d41d88907e33ced4083ec53c2327718fd9a -rc2bf0666539fa1a781c6d5d633ac292fa4fe2bd4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs (.../SoilProfileEntityReadExtensionsTest.cs) (revision 61af2d41d88907e33ced4083ec53c2327718fd9a) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs (.../SoilProfileEntityReadExtensionsTest.cs) (revision c2bf0666539fa1a781c6d5d633ac292fa4fe2bd4) @@ -21,13 +21,10 @@ using System; using System.Linq; - using Application.Ringtoets.Storage.DbContext; using Application.Ringtoets.Storage.Read; using Application.Ringtoets.Storage.Read.Piping; - using NUnit.Framework; - using Ringtoets.Piping.Primitives; namespace Application.Ringtoets.Storage.Test.Read.Piping @@ -90,8 +87,12 @@ Assert.AreEqual(entityId, profile.StorageId); Assert.AreEqual(testName, profile.Name); Assert.AreEqual(bottom, profile.Bottom, 1e-6); - CollectionAssert.AreEqual(new[]{"B", "A"}, profile.Layers.Select(l => l.MaterialName)); - } + CollectionAssert.AreEqual(new[] + { + "B", + "A" + }, profile.Layers.Select(l => l.MaterialName)); + } [Test] [TestCase(true)] @@ -121,8 +122,14 @@ Bottom = bottom, SoilLayerEntities = { - new SoilLayerEntity{ Top = bottom + 0.5 }, - new SoilLayerEntity{ Top = bottom + 1.2 } + new SoilLayerEntity + { + Top = bottom + 0.5 + }, + new SoilLayerEntity + { + Top = bottom + 1.2 + } } }; var collector = new ReadConversionCollector();