Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Data.Test/HydraulicBoundaryLocationTest.cs =================================================================== diff -u -ra159e1199947de7db3ccd318cfa827d5865061a5 -r5efe386d38b0b0686283bae9952a47e29aa6b7b1 --- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Data.Test/HydraulicBoundaryLocationTest.cs (.../HydraulicBoundaryLocationTest.cs) (revision a159e1199947de7db3ccd318cfa827d5865061a5) +++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Data.Test/HydraulicBoundaryLocationTest.cs (.../HydraulicBoundaryLocationTest.cs) (revision 5efe386d38b0b0686283bae9952a47e29aa6b7b1) @@ -44,6 +44,21 @@ } [Test] + public void Constructor_WithoutParameters_PropertiesAsExpected() + { + // Call + HydraulicBoundaryLocation hydraulicBoundaryLocation = new HydraulicBoundaryLocation(); + + // Assert + Assert.IsInstanceOf(hydraulicBoundaryLocation); + Assert.IsInstanceOf(hydraulicBoundaryLocation); + Assert.AreEqual(0, hydraulicBoundaryLocation.Id); + Assert.IsNull(hydraulicBoundaryLocation.Name); + Assert.IsNull(hydraulicBoundaryLocation.Location); + Assert.IsNaN(hydraulicBoundaryLocation.DesignWaterLevel); + } + + [Test] public void Constructor_ValidParameters_PropertiesAsExpected() { // Setup