Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilModelCreateExtensionsTest.cs =================================================================== diff -u -r2e94a93cca7fbb97675bff67cca2329e8b0b7505 -ra096cb901099c85dbaafa2dba6c69288464c248e --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilModelCreateExtensionsTest.cs (.../PipingStochasticSoilModelCreateExtensionsTest.cs) (revision 2e94a93cca7fbb97675bff67cca2329e8b0b7505) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilModelCreateExtensionsTest.cs (.../PipingStochasticSoilModelCreateExtensionsTest.cs) (revision a096cb901099c85dbaafa2dba6c69288464c248e) @@ -50,7 +50,7 @@ } [Test] - public void Create_WithCollector_ReturnsStochasticSoilModelEntityWithPropertiesSet() + public void Create_WithCollector_ReturnsPipingStochasticSoilModelEntityWithPropertiesSet() { // Setup int order = new Random(1).Next(); @@ -65,7 +65,7 @@ Assert.IsNotNull(entity); Assert.AreEqual(testName, entity.Name); Assert.AreEqual(order, entity.Order); - CollectionAssert.IsEmpty(entity.StochasticSoilProfileEntities); + CollectionAssert.IsEmpty(entity.PipingStochasticSoilProfileEntities); } [Test] @@ -86,7 +86,7 @@ } [Test] - public void Create_WithStochasticSoilProfiles_ReturnsStochasticSoilModelEntityWithPropertiesAndStochasticSoilProfileEntitiesSet() + public void Create_WithStochasticSoilProfiles_ReturnsStochasticSoilModelEntityWithPropertiesAndPipingStochasticSoilProfileEntitiesSet() { // Setup var stochasticSoilModel = new PipingStochasticSoilModel("testName") @@ -104,7 +104,7 @@ // Assert Assert.IsNotNull(entity); - Assert.AreEqual(2, entity.StochasticSoilProfileEntities.Count); + Assert.AreEqual(2, entity.PipingStochasticSoilProfileEntities.Count); } [Test]