Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Calculators/UpliftVan/Input/UpliftVanCalculatorInput.cs =================================================================== diff -u -r6052143f9ba210f1c75453904ff4bc462e3490d7 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Calculators/UpliftVan/Input/UpliftVanCalculatorInput.cs (.../UpliftVanCalculatorInput.cs) (revision 6052143f9ba210f1c75453904ff4bc462e3490d7) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Calculators/UpliftVan/Input/UpliftVanCalculatorInput.cs (.../UpliftVanCalculatorInput.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -42,6 +42,23 @@ throw new ArgumentNullException(nameof(properties)); } + if (properties.SurfaceLine == null) + { + throw new ArgumentException("SurfaceLine must be set."); + } + if (properties.SoilProfile == null) + { + throw new ArgumentException("SoilProfile must be set."); + } + if (properties.DrainageConstruction == null) + { + throw new ArgumentException("DrainageConstruction must be set."); + } + if (properties.PhreaticLineOffsets == null) + { + throw new ArgumentException("PhreaticLineOffsets must be set."); + } + AssessmentLevel = properties.AssessmentLevel; SurfaceLine = properties.SurfaceLine; SoilProfile = properties.SoilProfile; Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/MacroStabilityInwardsCalculatorFactoryTest.cs =================================================================== diff -u -rebb8e3bcd23386f645d0ef35dd3741b1e7893377 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/MacroStabilityInwardsCalculatorFactoryTest.cs (.../MacroStabilityInwardsCalculatorFactoryTest.cs) (revision ebb8e3bcd23386f645d0ef35dd3741b1e7893377) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/MacroStabilityInwardsCalculatorFactoryTest.cs (.../MacroStabilityInwardsCalculatorFactoryTest.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -24,7 +24,9 @@ using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan; using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels; +using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.Test.Calculators { @@ -77,7 +79,13 @@ // Call IUpliftVanCalculator upliftVanCalculator = factory.CreateUpliftVanCalculator( - new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties()), + new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties + { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction(), + }), new TestMacroStabilityInwardsKernelFactory()); // Assert Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/Input/UpliftVanCalculatorInputTest.cs =================================================================== diff -u -r6052143f9ba210f1c75453904ff4bc462e3490d7 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/Input/UpliftVanCalculatorInputTest.cs (.../UpliftVanCalculatorInputTest.cs) (revision 6052143f9ba210f1c75453904ff4bc462e3490d7) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/Input/UpliftVanCalculatorInputTest.cs (.../UpliftVanCalculatorInputTest.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -20,10 +20,10 @@ // All rights reserved. using System; -using Core.Common.Base.Geometry; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.Test.Calculators.UpliftVan.Input @@ -50,12 +50,7 @@ double hRiverValue = random.NextDouble(); var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty); - - var soilProfile = new UpliftVanSoilProfile(new[] - { - new UpliftVanSoilLayer(new Point2D[0], new Point2D[0][], new UpliftVanSoilLayer.ConstructionProperties()) - }, new UpliftVanPreconsolidationStress[0]); - + var soilProfile = new TestUpliftVanSoilProfile(); var drainageConstruction = new UpliftVanDrainageConstruction(); var phreaticLineOffsets = new UpliftVanPhreaticLineOffsets(); @@ -161,15 +156,23 @@ [Test] public void Constructor_EmptyConstructionProperties_ExpectedValues() { + // Setup + var surfaceLine = new MacroStabilityInwardsSurfaceLine(string.Empty); + var soilProfile = new TestUpliftVanSoilProfile(); + var drainageConstruction = new UpliftVanDrainageConstruction(); + var phreaticLineOffsets = new UpliftVanPhreaticLineOffsets(); + // Call var input = new UpliftVanCalculatorInput( - new UpliftVanCalculatorInput.ConstructionProperties()); + new UpliftVanCalculatorInput.ConstructionProperties + { + SurfaceLine = surfaceLine, + SoilProfile = soilProfile, + DrainageConstruction = drainageConstruction, + PhreaticLineOffsets = phreaticLineOffsets + }); // Assert - Assert.IsNull(input.SurfaceLine); - Assert.IsNull(input.SoilProfile); - Assert.IsNull(input.DrainageConstruction); - Assert.IsNull(input.PhreaticLineOffsets); Assert.IsNull(input.LeftGrid); Assert.IsNull(input.RightGrid); @@ -190,7 +193,7 @@ Assert.IsNaN(input.TangentLineZBottom); Assert.IsNaN(input.SlipPlaneMinimumDepth); Assert.IsNaN(input.SlipPlaneMinimumLength); - + Assert.IsFalse(input.AdjustPhreaticLine3And4ForUplift); Assert.IsFalse(input.MoveGrid); Assert.IsFalse(input.GridAutomaticDetermined); @@ -200,5 +203,69 @@ Assert.AreEqual(MacroStabilityInwardsDikeSoilScenario.ClayDikeOnClay, input.DikeSoilScenario); } + + [Test] + public void Constructor_SurfaceLineNull_ThrowsArgumentException() + { + // Call + TestDelegate test = () => new UpliftVanCalculatorInput( + new UpliftVanCalculatorInput.ConstructionProperties + { + SoilProfile = new TestUpliftVanSoilProfile(), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction() + }); + + // Assert + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "SurfaceLine must be set."); + } + + [Test] + public void Constructor_SoilProfileNull_ThrowsArgumentException() + { + // Call + TestDelegate test = () => new UpliftVanCalculatorInput( + new UpliftVanCalculatorInput.ConstructionProperties + { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction() + }); + + // Assert + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "SoilProfile must be set."); + } + + [Test] + public void Constructor_DrainageConstructionNull_ThrowsArgumentException() + { + // Call + TestDelegate test = () => new UpliftVanCalculatorInput( + new UpliftVanCalculatorInput.ConstructionProperties + { + SoilProfile = new TestUpliftVanSoilProfile(), + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets() + }); + + // Assert + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "DrainageConstruction must be set."); + } + + [Test] + public void Constructor_PhreaticLineOffsetsNull_ThrowsArgumentException() + { + // Call + TestDelegate test = () => new UpliftVanCalculatorInput( + new UpliftVanCalculatorInput.ConstructionProperties + { + SoilProfile = new TestUpliftVanSoilProfile(), + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + DrainageConstruction = new UpliftVanDrainageConstruction() + }); + + // Assert + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, "PhreaticLineOffsets must be set."); + } } } \ No newline at end of file Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/SlipPlaneUpliftVanCreatorTest.cs =================================================================== diff -u -r88ca97f32fd2d896edce687f2ade6d27a0a5df6d -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/SlipPlaneUpliftVanCreatorTest.cs (.../SlipPlaneUpliftVanCreatorTest.cs) (revision 88ca97f32fd2d896edce687f2ade6d27a0a5df6d) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/SlipPlaneUpliftVanCreatorTest.cs (.../SlipPlaneUpliftVanCreatorTest.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -26,6 +26,7 @@ using NUnit.Framework; using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.Creators.Input; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.Test.Creators.Input @@ -67,6 +68,10 @@ var input = new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction(), LeftGrid = new MacroStabilityInwardsGrid { XLeft = leftGridXLeft, Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/StabilityLocationCreatorTest.cs =================================================================== diff -u -r6052143f9ba210f1c75453904ff4bc462e3490d7 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/StabilityLocationCreatorTest.cs (.../StabilityLocationCreatorTest.cs) (revision 6052143f9ba210f1c75453904ff4bc462e3490d7) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Input/StabilityLocationCreatorTest.cs (.../StabilityLocationCreatorTest.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -27,6 +27,7 @@ using NUnit.Framework; using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.Creators.Input; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.Test.Creators.Input @@ -52,6 +53,10 @@ var input = new UpliftVanCalculatorInput( new UpliftVanCalculatorInput.ConstructionProperties { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction(), DikeSoilScenario = (MacroStabilityInwardsDikeSoilScenario) 99 }); @@ -77,7 +82,9 @@ { DikeSoilScenario = macroStabilityInwardsDikeSoilScenario, DrainageConstruction = new UpliftVanDrainageConstruction(), - PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets() + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), }); // Call @@ -119,6 +126,8 @@ var input = new UpliftVanCalculatorInput( new UpliftVanCalculatorInput.ConstructionProperties { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), DikeSoilScenario = MacroStabilityInwardsDikeSoilScenario.ClayDikeOnClay, AssessmentLevel = assessmentLevel, WaterLevelRiverAverage = waterLevelRiverAverage, Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/TestMacroStabilityInwardsCalculatorFactoryTest.cs =================================================================== diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/TestMacroStabilityInwardsCalculatorFactoryTest.cs (.../TestMacroStabilityInwardsCalculatorFactoryTest.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/TestMacroStabilityInwardsCalculatorFactoryTest.cs (.../TestMacroStabilityInwardsCalculatorFactoryTest.cs) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -24,7 +24,9 @@ using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels; +using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.Calculators { @@ -44,11 +46,17 @@ } [Test] - public void CreateUpliftVanCalculatorr_Always_ReturnStubWithInputSet() + public void CreateUpliftVanCalculator_Always_ReturnStubWithInputSet() { // Setup var factory = new TestMacroStabilityInwardsCalculatorFactory(); - var input = new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties()); + var input = new UpliftVanCalculatorInput(new UpliftVanCalculatorInput.ConstructionProperties + { + SurfaceLine = new MacroStabilityInwardsSurfaceLine("test"), + SoilProfile = new TestUpliftVanSoilProfile(), + PhreaticLineOffsets = new UpliftVanPhreaticLineOffsets(), + DrainageConstruction = new UpliftVanDrainageConstruction(), + }); // Call var calculator = (UpliftVanCalculatorStub) factory.CreateUpliftVanCalculator(input, new TestMacroStabilityInwardsKernelFactory()); Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Input/TestUpliftVanSoilProfileTest.cs =================================================================== diff -u --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Input/TestUpliftVanSoilProfileTest.cs (revision 0) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Input/TestUpliftVanSoilProfileTest.cs (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -0,0 +1,46 @@ +// Copyright (C) Stichting Deltares 2017. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.Linq; +using NUnit.Framework; +using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; +using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input; + +namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.Calculators.UpliftVan.Input +{ + [TestFixture] + public class TestUpliftVanSoilProfileTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Call + var profile = new TestUpliftVanSoilProfile(); + + // Assert + Assert.AreEqual(1, profile.Layers.Count()); + UpliftVanSoilLayer layer = profile.Layers.First(); + CollectionAssert.IsEmpty(layer.OuterRing); + CollectionAssert.IsEmpty(layer.Holes); + CollectionAssert.IsEmpty(profile.PreconsolidationStresses); + } + } +} \ No newline at end of file Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj =================================================================== diff -u -r01f2f9421fd1bc8dcef928a2d86da8840da24ef5 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj) (revision 01f2f9421fd1bc8dcef928a2d86da8840da24ef5) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -53,6 +53,7 @@ Properties\GlobalAssembly.cs + @@ -81,6 +82,10 @@ {3c0d3b38-a9f7-4b22-9705-513da26ae2cc} Ringtoets.MacroStabilityInwards.KernelWrapper + + {E9B39743-2DC9-4922-9E0F-6BA3E0E54189} + Ringtoets.MacroStabilityInwards.Primitives + {3810d738-6412-47d1-8bc0-729d55bc951f} Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Input/TestUpliftVanSoilProfile.cs =================================================================== diff -u --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Input/TestUpliftVanSoilProfile.cs (revision 0) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Input/TestUpliftVanSoilProfile.cs (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -0,0 +1,40 @@ +// Copyright (C) Stichting Deltares 2017. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using Core.Common.Base.Geometry; +using Ringtoets.MacroStabilityInwards.KernelWrapper.Calculators.UpliftVan.Input; + +namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Input +{ + /// + /// Simple soil profile that can be used in tests. + /// + public class TestUpliftVanSoilProfile : UpliftVanSoilProfile + { + /// + /// Creates a new instance of . + /// + public TestUpliftVanSoilProfile() : base(new[] + { + new UpliftVanSoilLayer(new Point2D[0], new Point2D[0][], new UpliftVanSoilLayer.ConstructionProperties()) + }, new UpliftVanPreconsolidationStress[0]) {} + } +} \ No newline at end of file Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj =================================================================== diff -u -r3096dd0aeecf478a662cae38533233949c76e103 -r2a2c3436a4c08acdb72b127a0ac5d5409ee1c712 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj) (revision 3096dd0aeecf478a662cae38533233949c76e103) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj) (revision 2a2c3436a4c08acdb72b127a0ac5d5409ee1c712) @@ -57,6 +57,7 @@ Properties\GlobalAssembly.cs +