Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilProfileCreateExtensionsTest.cs =================================================================== diff -u -r2e94a93cca7fbb97675bff67cca2329e8b0b7505 -ra096cb901099c85dbaafa2dba6c69288464c248e --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilProfileCreateExtensionsTest.cs (.../PipingStochasticSoilProfileCreateExtensionsTest.cs) (revision 2e94a93cca7fbb97675bff67cca2329e8b0b7505) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingStochasticSoilProfileCreateExtensionsTest.cs (.../PipingStochasticSoilProfileCreateExtensionsTest.cs) (revision a096cb901099c85dbaafa2dba6c69288464c248e) @@ -48,7 +48,7 @@ } [Test] - public void Create_WithCollector_ReturnsStochasticSoilProfileEntityWithPropertiesSet() + public void Create_WithCollector_ReturnsPipingStochasticSoilProfileEntityWithPropertiesSet() { // Setup var random = new Random(21); @@ -58,7 +58,7 @@ var registry = new PersistenceRegistry(); // Call - StochasticSoilProfileEntity entity = stochasticSoilProfile.Create(registry, order); + PipingStochasticSoilProfileEntity entity = stochasticSoilProfile.Create(registry, order); // Assert Assert.IsNotNull(entity); @@ -67,7 +67,7 @@ } [Test] - public void Create_DifferentStochasticSoilProfilesWithSamePipingSoilProfile_ReturnsStochasticSoilProfileEntityWithSameSoilProfileEntitySet() + public void Create_DifferentStochasticSoilProfilesWithSamePipingSoilProfile_ReturnsPipingStochasticSoilProfileEntityWithSameSoilProfileEntitySet() { // Setup PipingSoilProfile testPipingSoilProfile = PipingSoilProfileTestFactory.CreatePipingSoilProfile(); @@ -76,24 +76,24 @@ var registry = new PersistenceRegistry(); // Call - StochasticSoilProfileEntity firstEntity = firstStochasticSoilProfile.Create(registry, 0); - StochasticSoilProfileEntity secondEntity = secondStochasticSoilProfile.Create(registry, 0); + PipingStochasticSoilProfileEntity firstEntity = firstStochasticSoilProfile.Create(registry, 0); + PipingStochasticSoilProfileEntity secondEntity = secondStochasticSoilProfile.Create(registry, 0); // Assert - Assert.AreSame(firstEntity.SoilProfileEntity, secondEntity.SoilProfileEntity); + Assert.AreSame(firstEntity.PipingSoilProfileEntity, secondEntity.PipingSoilProfileEntity); } [Test] - public void Create_SameStochasticSoilProfileMultipleTimes_ReturnSameEntity() + public void Create_SamePipingStochasticSoilProfileMultipleTimes_ReturnSameEntity() { // Setup PipingSoilProfile soilProfile = PipingSoilProfileTestFactory.CreatePipingSoilProfile(); var stochasticSoilProfile = new PipingStochasticSoilProfile(0.4, soilProfile); var registry = new PersistenceRegistry(); // Call - StochasticSoilProfileEntity entity1 = stochasticSoilProfile.Create(registry, 0); - StochasticSoilProfileEntity entity2 = stochasticSoilProfile.Create(registry, 0); + PipingStochasticSoilProfileEntity entity1 = stochasticSoilProfile.Create(registry, 0); + PipingStochasticSoilProfileEntity entity2 = stochasticSoilProfile.Create(registry, 0); // Assert Assert.AreSame(entity1, entity2);