Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil.Test/StabilityPointStructurePermutationHelperTest.cs =================================================================== diff -u -r1e5300a95a25677488384a87ac159288529f3751 -r59bb55c3103574906353fbfb3ef3026f0086b6be --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil.Test/StabilityPointStructurePermutationHelperTest.cs (.../StabilityPointStructurePermutationHelperTest.cs) (revision 1e5300a95a25677488384a87ac159288529f3751) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil.Test/StabilityPointStructurePermutationHelperTest.cs (.../StabilityPointStructurePermutationHelperTest.cs) (revision 59bb55c3103574906353fbfb3ef3026f0086b6be) @@ -39,7 +39,7 @@ List testCaseDatas = StabilityPointStructurePermutationHelper.DifferentStabilityPointStructures(targetName, testResultDescription).ToList(); // Assert - Assert.AreEqual(47, testCaseDatas.Count); + Assert.AreEqual(46, testCaseDatas.Count); AssertTestNames(testCaseDatas, targetName, testResultDescription); AssertParameters(testCaseDatas, true, true, true); } @@ -55,7 +55,7 @@ List testCaseDatas = StabilityPointStructurePermutationHelper.DifferentStabilityPointStructuresWithSameId(targetName, testResultDescription).ToList(); // Assert - Assert.AreEqual(46, testCaseDatas.Count); + Assert.AreEqual(45, testCaseDatas.Count); AssertTestNames(testCaseDatas, targetName, testResultDescription); AssertParameters(testCaseDatas, false, true, true); } @@ -71,7 +71,7 @@ List testCaseDatas = StabilityPointStructurePermutationHelper.DifferentStabilityPointStructuresWithSameIdNameAndLocation(targetName, testResultDescription).ToList(); // Assert - Assert.AreEqual(44, testCaseDatas.Count); + Assert.AreEqual(43, testCaseDatas.Count); AssertTestNames(testCaseDatas, targetName, testResultDescription); AssertParameters(testCaseDatas, false, false, false); } @@ -161,7 +161,6 @@ differentStructures.Add(structures.Single(s => !s.LevellingCount.Equals(referenceStructure.LevellingCount))); differentStructures.Add(structures.Single(s => !s.ProbabilityCollisionSecondaryStructure.Equals(referenceStructure.ProbabilityCollisionSecondaryStructure))); differentStructures.Add(structures.Single(s => !s.FlowVelocityStructureClosable.Mean.Equals(referenceStructure.FlowVelocityStructureClosable.Mean))); - differentStructures.Add(structures.Single(s => !s.FlowVelocityStructureClosable.CoefficientOfVariation.Equals(referenceStructure.FlowVelocityStructureClosable.CoefficientOfVariation))); differentStructures.Add(structures.Single(s => !s.StabilityLinearLoadModel.Mean.Equals(referenceStructure.StabilityLinearLoadModel.Mean))); differentStructures.Add(structures.Single(s => !s.StabilityLinearLoadModel.CoefficientOfVariation.Equals(referenceStructure.StabilityLinearLoadModel.CoefficientOfVariation))); differentStructures.Add(structures.Single(s => !s.StabilityQuadraticLoadModel.Mean.Equals(referenceStructure.StabilityQuadraticLoadModel.Mean)));