Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/Ringtoets.MacroStabilityInwards.Primitives.csproj =================================================================== diff -u -rc85b5e367887a96d602dfb7a0b46073b6eef84da -r03775addfff9b2cc97790f3eb9348489bc5b7962 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/Ringtoets.MacroStabilityInwards.Primitives.csproj (.../Ringtoets.MacroStabilityInwards.Primitives.csproj) (revision c85b5e367887a96d602dfb7a0b46073b6eef84da) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/Ringtoets.MacroStabilityInwards.Primitives.csproj (.../Ringtoets.MacroStabilityInwards.Primitives.csproj) (revision 03775addfff9b2cc97790f3eb9348489bc5b7962) @@ -57,7 +57,6 @@ - Fisheye: Tag 03775addfff9b2cc97790f3eb9348489bc5b7962 refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Primitives/SoilProfileType.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfile1DTest.cs =================================================================== diff -u -r140635b34616f25ca853982955976632b6000c52 -r03775addfff9b2cc97790f3eb9348489bc5b7962 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfile1DTest.cs (.../TestMacroStabilityInwardsSoilProfile1DTest.cs) (revision 140635b34616f25ca853982955976632b6000c52) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfile1DTest.cs (.../TestMacroStabilityInwardsSoilProfile1DTest.cs) (revision 03775addfff9b2cc97790f3eb9348489bc5b7962) @@ -19,11 +19,8 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using System.Linq; -using Core.Common.TestUtil; using NUnit.Framework; -using Ringtoets.MacroStabilityInwards.Primitives; namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test { @@ -76,10 +73,9 @@ { // Setup const string name = "some name"; - var soilProfileType = new Random(6543).NextEnumValue(); // Call - var profile = new TestMacroStabilityInwardsSoilProfile1D(name, soilProfileType); + var profile = new TestMacroStabilityInwardsSoilProfile1D(name); // Assert Assert.AreEqual(name, profile.Name); Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/TestMacroStabilityInwardsSoilProfile1D.cs =================================================================== diff -u -r140635b34616f25ca853982955976632b6000c52 -r03775addfff9b2cc97790f3eb9348489bc5b7962 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/TestMacroStabilityInwardsSoilProfile1D.cs (.../TestMacroStabilityInwardsSoilProfile1D.cs) (revision 140635b34616f25ca853982955976632b6000c52) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/TestMacroStabilityInwardsSoilProfile1D.cs (.../TestMacroStabilityInwardsSoilProfile1D.cs) (revision 03775addfff9b2cc97790f3eb9348489bc5b7962) @@ -38,7 +38,6 @@ /// set to 0.0 /// set to a collection with a single /// with set to 0.0. - /// set to . /// /// public TestMacroStabilityInwardsSoilProfile1D() : this("") {} @@ -51,26 +50,11 @@ /// set to 0.0 /// set to a collection with a single /// with set to 0.0. - /// set to . - /// - /// - /// The name for the profile. - public TestMacroStabilityInwardsSoilProfile1D(string name) : this(name, SoilProfileType.SoilProfile1D) {} - - /// - /// Creates a new instance of , which is a - /// which has: - /// - /// set to - /// set to 0.0 - /// set to a collection with a single - /// with set to 0.0. /// set to . /// /// /// The name for the profile. - /// The type of the profile. - public TestMacroStabilityInwardsSoilProfile1D(string name, SoilProfileType soilProfileType) : base(name, 0.0, new Collection + public TestMacroStabilityInwardsSoilProfile1D(string name) : base(name, 0.0, new Collection { new MacroStabilityInwardsSoilLayer1D(0.0) { Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile1DTest.cs =================================================================== diff -u -r140635b34616f25ca853982955976632b6000c52 -r03775addfff9b2cc97790f3eb9348489bc5b7962 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile1DTest.cs (.../MacroStabilityInwardsSoilProfile1DTest.cs) (revision 140635b34616f25ca853982955976632b6000c52) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile1DTest.cs (.../MacroStabilityInwardsSoilProfile1DTest.cs) (revision 03775addfff9b2cc97790f3eb9348489bc5b7962) @@ -33,9 +33,7 @@ public class MacroStabilityInwardsSoilProfile1DTest { [Test] - [TestCase(SoilProfileType.SoilProfile1D)] - [TestCase(SoilProfileType.SoilProfile2D)] - public void Constructor_WithNameBottomLayersAndAquifer_ReturnsInstanceWithPropsAndEquivalentLayerCollection(SoilProfileType type) + public void Constructor_WithNameBottomLayersAndAquifer_ReturnsInstanceWithPropsAndEquivalentLayerCollection() { // Setup const string name = "Profile"; Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile2DTest.cs =================================================================== diff -u -r140635b34616f25ca853982955976632b6000c52 -r03775addfff9b2cc97790f3eb9348489bc5b7962 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile2DTest.cs (.../MacroStabilityInwardsSoilProfile2DTest.cs) (revision 140635b34616f25ca853982955976632b6000c52) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Primitives.Test/MacroStabilityInwardsSoilProfile2DTest.cs (.../MacroStabilityInwardsSoilProfile2DTest.cs) (revision 03775addfff9b2cc97790f3eb9348489bc5b7962) @@ -32,9 +32,7 @@ public class MacroStabilityInwardsSoilProfile2DTest { [Test] - [TestCase(SoilProfileType.SoilProfile1D)] - [TestCase(SoilProfileType.SoilProfile2D)] - public void Constructor_WithNameAndLayers_ReturnsInstanceWithPropsAndEquivalentLayerCollection(SoilProfileType type) + public void Constructor_WithNameAndLayers_ReturnsInstanceWithPropsAndEquivalentLayerCollection() { // Setup const string name = "Profile";