Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/Structures/StructuresParameterRowsValidatorTest.cs =================================================================== diff -u -rfe34b0dd97d49bb1c426d0c5f9dd3b5d139cf1fe -rb496fdc1ebef074d152d893b518dd069a6067559 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/Structures/StructuresParameterRowsValidatorTest.cs (.../StructuresParameterRowsValidatorTest.cs) (revision fe34b0dd97d49bb1c426d0c5f9dd3b5d139cf1fe) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/Structures/StructuresParameterRowsValidatorTest.cs (.../StructuresParameterRowsValidatorTest.cs) (revision b496fdc1ebef074d152d893b518dd069a6067559) @@ -41,7 +41,7 @@ } [Test] - public void ValidateHeightStructuresParameters_ParameterIdsMissingOrDuplicated_ExpectedValues() + public void ValidateHeightStructuresParameters_ParameterIdsMissingOrDuplicated_ValidIsFalseAndErrorMessages() { // Setup var structuresParameterRow = new StructuresParameterRow @@ -76,7 +76,7 @@ } [Test] - public void ValidateHeightStructuresParameters_ParametersAllInvalid_ExpectedValues() + public void ValidateHeightStructuresParameters_ParametersAllInvalid_ValidIsFalseAndErrorMessages() { // Setup List structureParameterRows = new List @@ -179,7 +179,7 @@ } [Test] - public void ValidateClosingStructuresParameters_ParameterIdsMissingOrDuplicated_ExpectedValues() + public void ValidateClosingStructuresParameters_ParameterIdsMissingOrDuplicated_ValidIsFalseAndErrorMessages() { // Setup var structuresParameterRow = new StructuresParameterRow @@ -221,7 +221,7 @@ } [Test] - public void ValidateClosingStructuresParameters_ParametersAllInvalid_ExpectedValues() + public void ValidateClosingStructuresParameters_ParametersAllInvalid_ValidIsFalseAndErrorMessages() { // Setup List structureParameterRows = new List @@ -379,7 +379,7 @@ } [Test] - public void ValidateStabilityPointStructuresParameters_ParameterIdsMissingOrDuplicated_ExpectedValues() + public void ValidateStabilityPointStructuresParameters_ParameterIdsMissingOrDuplicated_ValidIsFalseAndErrorMessages() { // Setup var structuresParameterRow = new StructuresParameterRow @@ -432,7 +432,7 @@ } [Test] - public void ValidateStabilityPointStructuresParameters_ParametersAllInvalid_ExpectedValues() + public void ValidateStabilityPointStructuresParameters_ParametersAllInvalid_ValidIsFalseAndErrorMessages() { // Setup List structureParameterRows = new List Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs =================================================================== diff -u -r7b02f05192ce7e2394f0ed0d727a71d2abdf8a41 -rb496fdc1ebef074d152d893b518dd069a6067559 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 7b02f05192ce7e2394f0ed0d727a71d2abdf8a41) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision b496fdc1ebef074d152d893b518dd069a6067559) @@ -72,7 +72,7 @@ /// The coefficient of variation of the mass of the ship. /// The mean velocity of the ship. /// The coefficient of variation of the velocity of the ship. - /// Number of levellings per year. + /// The levelling count. /// The chance per levelling at a collision with the second retaining structure. /// The mean maximum flow velocity at which the structure is closable. /// The standard deviation of the maximum flow velocity at which the structure is closable. @@ -311,7 +311,7 @@ public VariationCoefficientNormalDistribution ShipVelocity { get; private set; } /// - /// Gets the number of levelling count. + /// Gets the levelling count. /// public int LevellingCount { get; private set; }