Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Importers/HydraulicLocationConfigurationDatabaseImporterTest.cs =================================================================== diff -u -r481707c8d10d7023d2b8e0cf2f46c3742c7b6807 -rdac3c2c6cf43f13de09202b5f5ebd3073f00b1cf --- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Importers/HydraulicLocationConfigurationDatabaseImporterTest.cs (.../HydraulicLocationConfigurationDatabaseImporterTest.cs) (revision 481707c8d10d7023d2b8e0cf2f46c3742c7b6807) +++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Importers/HydraulicLocationConfigurationDatabaseImporterTest.cs (.../HydraulicLocationConfigurationDatabaseImporterTest.cs) (revision dac3c2c6cf43f13de09202b5f5ebd3073f00b1cf) @@ -19,13 +19,24 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using Core.Common.Base.IO; using NUnit.Framework; +using Ringtoets.Common.Data.Hydraulics; +using Ringtoets.Integration.IO.Importers; namespace Ringtoets.Integration.IO.Test.Importers { [TestFixture] public class HydraulicLocationConfigurationDatabaseImporterTest { - + [Test] + public void Constructor_ExpectedValues() + { + // Call + var importer = new HydraulicLocationConfigurationDatabaseImporter(new HydraulicLocationConfigurationSettings(), ""); + + // Assert + Assert.IsInstanceOf>(importer); + } } } \ No newline at end of file