Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/Common/UpliftHelperTests.cs =================================================================== diff -u -r4052 -r4520 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/Common/UpliftHelperTests.cs (.../UpliftHelperTests.cs) (revision 4052) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/Common/UpliftHelperTests.cs (.../UpliftHelperTests.cs) (revision 4520) @@ -24,6 +24,7 @@ using Deltares.DamEngine.Calculators.Tests.KernelWrappers.TestHelpers; using Deltares.DamEngine.Data.General; using Deltares.DamEngine.Data.Geotechnics; +using Deltares.DamEngine.TestHelpers; using Deltares.DamEngine.TestHelpers.Factories; using NUnit.Framework; @@ -32,7 +33,7 @@ [TestFixture] public class UpliftHelperTests { - [Test, Ignore("To be replaced by stix file when stix files are supported")] + [Test, Category(Categories.WorkInProgress)] public void TestDetermineStabilityUpliftWithStiFile() { DamKernelInput damKernelInput = CreateDamKernelInput(); Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/Sensors/SensorPLLineCreatorTest.cs =================================================================== diff -u -r4412 -r4520 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/Sensors/SensorPLLineCreatorTest.cs (.../SensorPLLineCreatorTest.cs) (revision 4412) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/Sensors/SensorPLLineCreatorTest.cs (.../SensorPLLineCreatorTest.cs) (revision 4520) @@ -29,6 +29,7 @@ using Deltares.DamEngine.Data.General.Sensors; using Deltares.DamEngine.Data.Geometry; using Deltares.DamEngine.Data.Geotechnics; +using Deltares.DamEngine.TestHelpers; using NUnit.Framework; namespace Deltares.DamEngine.Calculators.Tests.Sensors; @@ -391,7 +392,7 @@ Assert.AreEqual(expectedEndPoint, lastPoint.Z); } - [Test, Ignore("Test must be reviewed.")] + [Test, Category(Categories.WorkInProgress)] public void CreatePlLine_Pl1DikeToeAtPolderToSurfaceLevelInsideAndNoLocationData_ZValueShouldBeSurfaceLevel() { // setup @@ -404,11 +405,7 @@ }, Geometry = new GeometryPointString() }; - var location = new Location("test") - { - RiverLevel = 5 - }; - location.CurrentScenario.PolderLevel = -1; + Location location = CreateConfiguredLocation("test", 5, -1); location.AddSensorLocation(); location.SensorLocation.SourceTypePl1PlLineOffsetBelowDikeTopAtRiver = DataSourceTypeSensors.LocationData; location.SensorLocation.SourceTypePl1PlLineOffsetBelowDikeTopAtPolder = DataSourceTypeSensors.LocationData; @@ -504,7 +501,7 @@ // asserts PlLinePoint lastPoint = actual.Points.Last(); - Assert.AreEqual(expectedValue, lastPoint.Z); + Assert.AreEqual(expectedValue, lastPoint.Z, "Incorrect last point of PL1: Test must be reviewed."); } [Test]