Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationTest.cs =================================================================== diff -u -r4bf59bb3506b840b284efe0c0f4431b7876e0e5b -r9d03e0c94adad4bcb57a0b7135f8891c255c5f52 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationTest.cs (.../HeightStructuresCalculationConfigurationTest.cs) (revision 4bf59bb3506b840b284efe0c0f4431b7876e0e5b) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationTest.cs (.../HeightStructuresCalculationConfigurationTest.cs) (revision 9d03e0c94adad4bcb57a0b7135f8891c255c5f52) @@ -65,5 +65,18 @@ // Assert Assert.AreSame(levelCrestStructure, configuration.LevelCrestStructure); } + + [Test] + public void Name_Null_ThrowsArgumentNullException() + { + // Setup + var calculationConfiguration = new HeightStructuresCalculationConfiguration("valid name"); + + // Call + TestDelegate test = () => calculationConfiguration.Name = null; + + // Assert + Assert.Throws(test); + } } } \ No newline at end of file