Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs =================================================================== diff -u -rf4efcc2bb58d597f4a19884d98d0ab79bab04b1c -r2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs (.../StochasticSoilModelCreateExtensionsTest.cs) (revision f4efcc2bb58d597f4a19884d98d0ab79bab04b1c) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilModelCreateExtensionsTest.cs (.../StochasticSoilModelCreateExtensionsTest.cs) (revision 2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d) @@ -54,14 +54,14 @@ public void Create_WithCollector_ReturnsStochasticSoilModelEntityWithPropertiesSet() { // Setup - var order = new Random(1).Next(); - string testName = "testName"; - string testSegmentName = "testSegmentName"; + int order = new Random(1).Next(); + var testName = "testName"; + var testSegmentName = "testSegmentName"; var stochasticSoilModel = new StochasticSoilModel(-1, testName, testSegmentName); var registry = new PersistenceRegistry(); // Call - var entity = stochasticSoilModel.Create(registry, order); + StochasticSoilModelEntity entity = stochasticSoilModel.Create(registry, order); // Assert Assert.IsNotNull(entity); @@ -75,8 +75,8 @@ public void Create_StringPropertiesDoNotShareReference() { // Setup - string testName = "testName"; - string testSegmentName = "testSegmentName"; + var testName = "testName"; + var testSegmentName = "testSegmentName"; var stochasticSoilModel = new StochasticSoilModel(-1, testName, testSegmentName); var registry = new PersistenceRegistry(); @@ -109,7 +109,7 @@ var registry = new PersistenceRegistry(); // Call - var entity = stochasticSoilModel.Create(registry, 0); + StochasticSoilModelEntity entity = stochasticSoilModel.Create(registry, 0); // Assert Assert.IsNotNull(entity); @@ -129,7 +129,7 @@ var registry = new PersistenceRegistry(); // Call - var entity = stochasticSoilModel.Create(registry, 0); + StochasticSoilModelEntity entity = stochasticSoilModel.Create(registry, 0); // Assert Assert.IsNotNull(entity);