Index: Riskeer/Migration/src/Riskeer.Migration.Core/EmbeddedResources/Migration_19.1_20.1.sql =================================================================== diff -u -r974f29c4203cea08ee57be247e18f9eba0b9bd6e -recd2ee0ee0c214fe1c8f5a8b15f68689141be21f --- Riskeer/Migration/src/Riskeer.Migration.Core/EmbeddedResources/Migration_19.1_20.1.sql (.../Migration_19.1_20.1.sql) (revision 974f29c4203cea08ee57be247e18f9eba0b9bd6e) +++ Riskeer/Migration/src/Riskeer.Migration.Core/EmbeddedResources/Migration_19.1_20.1.sql (.../Migration_19.1_20.1.sql) (revision ecd2ee0ee0c214fe1c8f5a8b15f68689141be21f) @@ -371,7 +371,6 @@ INSERT INTO HydraulicLocationCalculationCollectionEntity SELECT * FROM [SOURCEPROJECT].HydraulicLocationCalculationCollectionEntity; INSERT INTO HydraulicLocationCalculationEntity SELECT * FROM [SOURCEPROJECT].HydraulicLocationCalculationEntity; INSERT INTO HydraulicLocationEntity SELECT * FROM [SOURCEPROJECT].HydraulicLocationEntity; -INSERT INTO HydraulicLocationOutputEntity SELECT * FROM [SOURCEPROJECT].HydraulicLocationOutputEntity; INSERT INTO IllustrationPointResultEntity ( [IllustrationPointResultEntityId], [SubMechanismIllustrationPointEntityId], Index: Riskeer/Migration/test/Riskeer.Migration.Core.Test/test-data/MigrationTestProject191.risk =================================================================== diff -u -r974f29c4203cea08ee57be247e18f9eba0b9bd6e -recd2ee0ee0c214fe1c8f5a8b15f68689141be21f Binary files differ Index: Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo201IntegrationTest.cs =================================================================== diff -u -r974f29c4203cea08ee57be247e18f9eba0b9bd6e -recd2ee0ee0c214fe1c8f5a8b15f68689141be21f --- Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo201IntegrationTest.cs (.../MigrationTo201IntegrationTest.cs) (revision 974f29c4203cea08ee57be247e18f9eba0b9bd6e) +++ Riskeer/Migration/test/Riskeer.Migration.Integration.Test/MigrationTo201IntegrationTest.cs (.../MigrationTo201IntegrationTest.cs) (revision ecd2ee0ee0c214fe1c8f5a8b15f68689141be21f) @@ -61,6 +61,8 @@ AssertVersions(reader); AssertDatabase(reader); + AssertHydraulicLocationOutput(reader); + AssertGrassCoverErosionInwardsCalculation(reader, sourceFilePath); AssertGrassCoverErosionInwardsSectionResult(reader, sourceFilePath); @@ -86,6 +88,14 @@ } } + private void AssertHydraulicLocationOutput(MigratedDatabaseReader reader) + { + const string validateOutput = + "SELECT COUNT() = 0 " + + "FROM [HydraulicLocationOutputEntity]; "; + reader.AssertReturnedDataIsValid(validateOutput); + } + private static void AssertGrassCoverErosionInwardsCalculation(MigratedDatabaseReader reader, string sourceFilePath) { string validateCalculationLinkedToSectionResult = @@ -782,7 +792,6 @@ "HydraulicLocationCalculationCollectionEntity", "HydraulicLocationCalculationEntity", "HydraulicLocationEntity", - "HydraulicLocationOutputEntity", "IllustrationPointResultEntity", "MacroStabilityInwardsCalculationEntity", "MacroStabilityInwardsCharacteristicPointEntity",