Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/GrassCoverErosionInwards/DikeProfileCreateExtensionsTest.cs =================================================================== diff -u -r30b8231f92b90ea4b05e98e3d0285368f6dfe2e4 -r11f0867b39150ae5fac83dc178a89fee46d27611 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/GrassCoverErosionInwards/DikeProfileCreateExtensionsTest.cs (.../DikeProfileCreateExtensionsTest.cs) (revision 30b8231f92b90ea4b05e98e3d0285368f6dfe2e4) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/GrassCoverErosionInwards/DikeProfileCreateExtensionsTest.cs (.../DikeProfileCreateExtensionsTest.cs) (revision 11f0867b39150ae5fac83dc178a89fee46d27611) @@ -179,32 +179,6 @@ } [Test] - public void Create_Always_RegisterEntityToPersistenceRegistry() - { - // Setup - var dikeProfile = new DikeProfile(new Point2D(1.1, 2.2), - new[] - { - new RoughnessPoint(new Point2D(3.3, 4.4), 0.75), - new RoughnessPoint(new Point2D(5.5, 6.6), 0.75) - }, - new[] - { - new Point2D(7.7, 8.8), - new Point2D(9.9, 10.10) - }, null, new DikeProfile.ConstructionProperties()); - var registry = new PersistenceRegistry(); - - // Call - DikeProfileEntity entity = dikeProfile.Create(registry, 0); - - // Assert - entity.DikeProfileEntityId = 345678; - registry.TransferIds(); - Assert.AreEqual(entity.DikeProfileEntityId, dikeProfile.StorageId); - } - - [Test] public void Create_DikeProfileAlreadyRegistered_ReturnRegisteredEntity() { // Setup