Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/StabilityPointStructuresCalculationConfigurationTest.cs =================================================================== diff -u -r5da2eede50bb14cb73fc2ea8a122c03244c428a2 -rf53bbfd52a477ea865f97ce02525b1fe96d05a30 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/StabilityPointStructuresCalculationConfigurationTest.cs (.../StabilityPointStructuresCalculationConfigurationTest.cs) (revision 5da2eede50bb14cb73fc2ea8a122c03244c428a2) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/StabilityPointStructuresCalculationConfigurationTest.cs (.../StabilityPointStructuresCalculationConfigurationTest.cs) (revision f53bbfd52a477ea865f97ce02525b1fe96d05a30) @@ -52,5 +52,19 @@ Assert.IsInstanceOf(configuration); Assert.AreEqual(name, configuration.Name); } + + [Test] + public void Properties_SetNewValues_NewValuesSet() + { + // Setup + var bankWidth = new MeanStandardDeviationStochastConfiguration(); + var configuration = new StabilityPointStructuresCalculationConfiguration("some name"); + + // Call + configuration.BankWidth = bankWidth; + + // Assert + Assert.AreSame(bankWidth, configuration.BankWidth); + } } } \ No newline at end of file