Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.IntegrationTests/FailureMechanismTests.cs =================================================================== diff -u -r6262 -r6293 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.IntegrationTests/FailureMechanismTests.cs (.../FailureMechanismTests.cs) (revision 6262) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.IntegrationTests/FailureMechanismTests.cs (.../FailureMechanismTests.cs) (revision 6293) @@ -33,6 +33,8 @@ public class FailureMechanismTests { private const double tolerance3Decimals = 0.00051; + private const double tolerance2Decimals = 0.0051; + private const double tolerance1Decimals = 0.051; [Test] public void TestStabilityOutsideWith2DStixFiles() @@ -45,23 +47,23 @@ { Assert.That(allCalculationResults[0].LocationName, Is.EqualTo("DWP_1")); Assert.That(allCalculationResults[0].CalculationResult, Is.EqualTo(CalculationResult.Succeeded)); - Assert.That(allCalculationResults[0].X, Is.EqualTo(99718.000)); - Assert.That(allCalculationResults[0].Y, Is.EqualTo(437106.000)); + Assert.That(allCalculationResults[0].X, Is.EqualTo(99718.000).Within(tolerance3Decimals)); + Assert.That(allCalculationResults[0].Y, Is.EqualTo(437106.000).Within(tolerance3Decimals)); Assert.That(allCalculationResults[0].AnalysisType, Is.EqualTo(AnalysisType.NoAdaption)); Assert.That(allCalculationResults[0].IsUplift, Is.EqualTo(false)); Assert.That(allCalculationResults[0].ProfileName, Is.EqualTo("DWP_1.stix")); - Assert.That(allCalculationResults[0].ProfileProbability, Is.EqualTo(100)); + Assert.That(allCalculationResults[0].ProfileProbability, Is.EqualTo(100).Within(tolerance1Decimals)); Assert.That(allCalculationResults[0].StabilityModel, Is.EqualTo(StabilityModelType.Bishop)); Assert.That(allCalculationResults[0].SafetyFactor, Is.EqualTo(1.565).Within(tolerance3Decimals)); Assert.That(allCalculationResults[0].ShoulderHeight, Is.Null); Assert.That(allCalculationResults[0].ToeAtPolderX, Is.Null); Assert.That(allCalculationResults[0].ToeAtPolderZ, Is.Null); - Assert.That(allCalculationResults[0].RequiredSafetyFactor, Is.EqualTo(1.170)); - Assert.That(allCalculationResults[0].RiverLevel, Is.EqualTo(4.4)); - Assert.That(allCalculationResults[0].RiverLevelLow, Is.EqualTo(0.63)); - Assert.That(allCalculationResults[0].DikeTableHeight, Is.EqualTo(4.900)); - Assert.That(allCalculationResults[0].SlopeDampingPiezometricHeightPolderSide, Is.EqualTo(0.000)); - Assert.That(allCalculationResults[0].DikeLength, Is.EqualTo(36.150)); + Assert.That(allCalculationResults[0].RequiredSafetyFactor, Is.EqualTo(1.170).Within(tolerance3Decimals)); + Assert.That(allCalculationResults[0].RiverLevel, Is.EqualTo(4.4).Within(tolerance1Decimals)); + Assert.That(allCalculationResults[0].RiverLevelLow, Is.EqualTo(0.63).Within(tolerance2Decimals)); + Assert.That(allCalculationResults[0].DikeTableHeight, Is.EqualTo(4.900).Within(tolerance3Decimals)); + Assert.That(allCalculationResults[0].SlopeDampingPiezometricHeightPolderSide, Is.EqualTo(0.000).Within(tolerance3Decimals)); + Assert.That(allCalculationResults[0].DikeLength, Is.EqualTo(36.150).Within(tolerance3Decimals)); Assert.That(allCalculationResults[0].Pl3MinUplift, Is.EqualTo(null)); Assert.That(allCalculationResults[0].Pl3HeadAdjusted, Is.EqualTo(null)); @@ -76,7 +78,7 @@ Assert.That(allCalculationResults[0].LocalPipingEntryPointX, Is.EqualTo(16.190).Within(tolerance3Decimals)); Assert.That(allCalculationResults[0].PipingEntryPointX, Is.EqualTo(24.610).Within(tolerance3Decimals)); - Assert.That(allCalculationResults[0].PipingEntryPointY, Is.EqualTo(0.000)); + Assert.That(allCalculationResults[0].PipingEntryPointY, Is.EqualTo(0.000).Within(tolerance3Decimals)); Assert.That(allCalculationResults[0].LocalPipingExitPointX, Is.EqualTo(null)); Assert.That(allCalculationResults[0].PipingExitPointX, Is.EqualTo(null)); Assert.That(allCalculationResults[0].PipingExitPointY, Is.EqualTo(null));