Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsSoilProfile1DCreateExtensionsTest.cs =================================================================== diff -u -rd0d3ed3067ec66c52283bd4d1c44011b1a412492 -r9a11a564b515c3637f723b3d214502926ec503c4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsSoilProfile1DCreateExtensionsTest.cs (.../MacroStabilityInwardsSoilProfile1DCreateExtensionsTest.cs) (revision d0d3ed3067ec66c52283bd4d1c44011b1a412492) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsSoilProfile1DCreateExtensionsTest.cs (.../MacroStabilityInwardsSoilProfile1DCreateExtensionsTest.cs) (revision 9a11a564b515c3637f723b3d214502926ec503c4) @@ -72,8 +72,14 @@ double bottom = -random.NextDouble(); var soilProfile = new MacroStabilityInwardsSoilProfile1D(name, bottom, new[] { - new MacroStabilityInwardsSoilLayer1D(random.NextDouble()), new MacroStabilityInwardsSoilLayer1D(random.NextDouble()) + { + Data = new MacroStabilityInwardsSoilLayerData() + }, + new MacroStabilityInwardsSoilLayer1D(random.NextDouble()) + { + Data = new MacroStabilityInwardsSoilLayerData() + } }); var registry = new PersistenceRegistry(); @@ -100,6 +106,9 @@ var soilProfile = new MacroStabilityInwardsSoilProfile1D("some name", double.NaN, new[] { new MacroStabilityInwardsSoilLayer1D(random.NextDouble()) + { + Data = new MacroStabilityInwardsSoilLayerData() + } }); var registry = new PersistenceRegistry();