Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs =================================================================== diff -u -r6582cffcc14571ddb78265e95a9da39785cc58cf -rd5e85f2275fe1ed39438aebb69eb04ee03610832 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision 6582cffcc14571ddb78265e95a9da39785cc58cf) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision d5e85f2275fe1ed39438aebb69eb04ee03610832) @@ -245,20 +245,8 @@ public void Clone_Always_ReturnNewInstanceWithCopiedValues() { // Setup - var random = new Random(21); - var original = new HeightStructuresInput - { - Structure = new TestHeightStructure(), - LevelCrestStructure = new NormalDistribution - { - Mean = random.NextRoundedDouble(), - StandardDeviation = random.NextRoundedDouble() - }, - DeviationWaveDirection = random.NextRoundedDouble() - }; + HeightStructuresInput original = HeightStructuresTestDataGenerator.CreateRandomStructuresInput(); - CommonTestDataGenerator.SetRandomDataToStructuresInput(original); - // Call object clone = original.Clone();