Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MigratedDatabaseReaderTest.cs =================================================================== diff -u -r6fc7bb82cd253331bf969bd85951237d5a309e3e -rf4222ec87c8c4ec49ef66fa4529c20493647d7b5 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MigratedDatabaseReaderTest.cs (.../MigratedDatabaseReaderTest.cs) (revision 6fc7bb82cd253331bf969bd85951237d5a309e3e) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MigratedDatabaseReaderTest.cs (.../MigratedDatabaseReaderTest.cs) (revision f4222ec87c8c4ec49ef66fa4529c20493647d7b5) @@ -19,20 +19,23 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System.IO; using Core.Common.IO.Readers; using Core.Common.TestUtil; using NUnit.Framework; namespace Application.Ringtoets.Storage.TestUtil.Test { + [TestFixture] public class MigratedDatabaseReaderTest { [Test] public void Constructor_ExpectedValues() { // Setup - string path = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration.Core, - "FullTestProject171.rtd"); + string path = Path.Combine(TestHelper.GetTestDataPath(TestDataPath.Core.Common.IO, "SqLiteDatabaseReaderBase"), + "empty.sqlite"); + // Call using (var reader = new MigratedDatabaseReader(path)) {