Index: Application/Ringtoets/test/Application.Ringtoets.Migration.Test/RingtoetsSqLiteDatabaseFileMigratorTest.cs =================================================================== diff -u -r18607ec1398cf284f9126c36558b2c6b49f61880 -r214922706cd2559757df5b96982bd99cf0fe9cfa --- Application/Ringtoets/test/Application.Ringtoets.Migration.Test/RingtoetsSqLiteDatabaseFileMigratorTest.cs (.../RingtoetsSqLiteDatabaseFileMigratorTest.cs) (revision 18607ec1398cf284f9126c36558b2c6b49f61880) +++ Application/Ringtoets/test/Application.Ringtoets.Migration.Test/RingtoetsSqLiteDatabaseFileMigratorTest.cs (.../RingtoetsSqLiteDatabaseFileMigratorTest.cs) (revision 214922706cd2559757df5b96982bd99cf0fe9cfa) @@ -73,7 +73,7 @@ public void NeedsMigrate_NeedsMigrate_ReturnsTrue() { // Setup - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var versionedFile = new RingtoetsVersionedFile(sourceFilePath); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); @@ -88,7 +88,7 @@ public void NeedsMigrate_DoesNotNeedMigration_ReturnsFalse() { // Setup - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var versionedFile = new RingtoetsVersionedFile(sourceFilePath); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); @@ -104,10 +104,10 @@ { // Setup const string newVersion = "17.1"; - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); - string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, Path.GetRandomFileName()); + string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, Path.GetRandomFileName()); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); using (new FileDisposeHelper(targetFilePath)) @@ -126,10 +126,10 @@ { // Setup const string newVersion = "17.1"; - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); - string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, Path.GetRandomFileName()); + string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, Path.GetRandomFileName()); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); using (new FileDisposeHelper(targetFilePath)) @@ -151,7 +151,7 @@ { // Setup const string newVersion = "17.1"; - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); @@ -169,10 +169,10 @@ { // Setup const string newVersion = "17.1"; - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); - string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, Path.GetRandomFileName()); + string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, Path.GetRandomFileName()); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); using (new FileDisposeHelper(targetFilePath)) @@ -203,10 +203,10 @@ { // Setup const string newVersion = "6"; - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "Demo164.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "Demo164.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); - string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, Path.GetRandomFileName()); + string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, Path.GetRandomFileName()); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); // Call @@ -221,10 +221,10 @@ public void Migrate_UnsupportedVersion_ThrowsCriticalDatabaseMigrationException() { // Setup - string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, "UnsupportedVersion8.rtd"); + string sourceFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, "UnsupportedVersion8.rtd"); var fromVersionedFile = new RingtoetsVersionedFile(sourceFilePath); - string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Migration.Core.Storage, Path.GetRandomFileName()); + string targetFilePath = TestHelper.GetTestDataPath(TestDataPath.Application.Ringtoets.Migration, Path.GetRandomFileName()); var migrator = new RingtoetsSqLiteDatabaseFileMigrator(); // Call