Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.IO.Test/DuneLocationsReaderTest.cs =================================================================== diff -u -r9717724b58f9be090380d74ba4d30c74ba81eb0c -r179b85228f5a860ff30681827920f25be1116c56 --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.IO.Test/DuneLocationsReaderTest.cs (.../DuneLocationsReaderTest.cs) (revision 9717724b58f9be090380d74ba4d30c74ba81eb0c) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.IO.Test/DuneLocationsReaderTest.cs (.../DuneLocationsReaderTest.cs) (revision 179b85228f5a860ff30681827920f25be1116c56) @@ -22,7 +22,6 @@ using System.Collections.Generic; using System.Linq; using NUnit.Framework; -using Ringtoets.DuneErosion.Data; namespace Ringtoets.DuneErosion.IO.Test { @@ -46,10 +45,10 @@ Assert.IsNotNull(duneLocation.Location); Assert.IsNotNull(duneLocation.Location.X); Assert.IsNotNull(duneLocation.Location.Y); - Assert.IsNotNull(duneLocation.CoastalAreaId); - Assert.IsNotNull(duneLocation.Offset); - Assert.IsNotNull(duneLocation.Orientation); - Assert.IsNotNull(duneLocation.D50); + Assert.AreNotEqual(0, duneLocation.CoastalAreaId); + Assert.IsTrue(duneLocation.Offset >= 0); + Assert.IsTrue(duneLocation.Orientation >= 0); + Assert.AreNotEqual(0, duneLocation.D50); } } }