Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Point2DCreateExtensionsTest.cs =================================================================== diff -u -ra294987551b0b2d8a27b6e1bc6235b0e2351b6f4 -r23766b602d9b509a2ffc030f284e8d5e82325a3e --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Point2DCreateExtensionsTest.cs (.../Point2DCreateExtensionsTest.cs) (revision a294987551b0b2d8a27b6e1bc6235b0e2351b6f4) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Point2DCreateExtensionsTest.cs (.../Point2DCreateExtensionsTest.cs) (revision 23766b602d9b509a2ffc030f284e8d5e82325a3e) @@ -74,30 +74,5 @@ Assert.AreEqual(y, entity.Y); Assert.AreEqual(order, entity.Order); } - - [Test] - [TestCase(0)] - [TestCase(100)] - [TestCase(Int32.MaxValue)] - [TestCase(Int32.MinValue)] - public void CreateStochasticSoilModelSegmentPointEntity_Always_NewStochasticSoilModelSegmentPointEntityWithPropertiesSet(int order) - { - // Setup - var random = new Random(21); - double x = random.NextDouble(); - double y = random.NextDouble(); - var point = new Point2D(x, y); - - // Call - StochasticSoilModelSegmentPointEntity entity = point.CreateStochasticSoilModelSegmentPointEntity(order); - - // Assert - Assert.AreEqual(x, entity.X); - Assert.AreEqual(y, entity.Y); - Assert.AreEqual(order, entity.Order); - - Assert.AreEqual(0, entity.StochasticSoilModelSegmentPointEntityId); - Assert.AreEqual(0, entity.StochasticSoilModelEntityId); - } } } \ No newline at end of file