Index: Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Services/HydraRingConfigurationServiceTest.cs =================================================================== diff -u -rf677c258a750c0212a03a81cbdab50ae9d67c05f -rcaaddda096dee317459415b671c8215e446b000f --- Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Services/HydraRingConfigurationServiceTest.cs (.../HydraRingConfigurationServiceTest.cs) (revision f677c258a750c0212a03a81cbdab50ae9d67c05f) +++ Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Services/HydraRingConfigurationServiceTest.cs (.../HydraRingConfigurationServiceTest.cs) (revision caaddda096dee317459415b671c8215e446b000f) @@ -104,7 +104,7 @@ 1, new NumericsSetting(8, 9, 10, 11.11, 12.12, 13.13, 14.14, 15, 16, 17, 18.18, 19.19, 20.20, 21) } }, - TimeIntegrationSetting = new TimeIntegrationSetting(3) + TimeIntegrationSetting = new TimeIntegrationSetting(3, 5, 0.7) }); string expectedForelandModelsScript = withForeland || withBreakWater @@ -125,7 +125,7 @@ "INSERT INTO [Sections] VALUES (1, 1, 1, 1, 1, 0, 0, 0, 0, 700004, 700004, 100, 3.3, 2.2);" + Environment.NewLine + Environment.NewLine + "DELETE FROM [SectionCalculationSchemes];" + Environment.NewLine + - "INSERT INTO [SectionCalculationSchemes] VALUES (1, 1, 3, 3, 1);" + Environment.NewLine + + "INSERT INTO [SectionCalculationSchemes] VALUES (1, 1, 3, 5, 0.7);" + Environment.NewLine + Environment.NewLine + "DELETE FROM [DesignTables];" + Environment.NewLine + "INSERT INTO [DesignTables] VALUES (1, 1, 1, 1, 4, 5, 0, 0, 0, 0, 6.6, 7.7, 1.1);" + Environment.NewLine + @@ -216,7 +216,7 @@ 1, new NumericsSetting(8, 9, 10, 11.11, 12.12, 13.13, 14.14, 15, 16, 17, 18.18, 19.19, 20.20, 21) } }, - TimeIntegrationSetting = new TimeIntegrationSetting(2) + TimeIntegrationSetting = new TimeIntegrationSetting(2, 6, 0.5) }); hydraRingConfigurationService.AddHydraRingCalculationInput(new HydraRingCalculationInputImplementation(2, 700005) { @@ -227,7 +227,7 @@ 1, new NumericsSetting(108, 109, 110, 111.11, 112.12, 113.13, 114.14, 115, 116, 117, 118.18, 119.19, 120.20, 121) } }, - TimeIntegrationSetting = new TimeIntegrationSetting(3) + TimeIntegrationSetting = new TimeIntegrationSetting(3, 7, 0.6) }); hydraRingConfigurationService.AddHydraRingCalculationInput(new HydraRingCalculationInputImplementation(3, 700006) { @@ -238,7 +238,7 @@ 1, new NumericsSetting(208, 209, 210, 211.11, 212.12, 213.13, 214.14, 215, 216, 217, 218.18, 219.19, 220.20, 221) } }, - TimeIntegrationSetting = new TimeIntegrationSetting(1) + TimeIntegrationSetting = new TimeIntegrationSetting(1, 8, 0.7) }); string expectedCreationScript = "DELETE FROM [HydraulicModels];" + Environment.NewLine + @@ -250,9 +250,9 @@ "INSERT INTO [Sections] VALUES (3, 1, 1, 3, 3, 0, 0, 0, 0, 700006, 700006, 100, 3.3, 2.2);" + Environment.NewLine + Environment.NewLine + "DELETE FROM [SectionCalculationSchemes];" + Environment.NewLine + - "INSERT INTO [SectionCalculationSchemes] VALUES (1, 1, 2, 3, 1);" + Environment.NewLine + - "INSERT INTO [SectionCalculationSchemes] VALUES (2, 1, 3, 3, 1);" + Environment.NewLine + - "INSERT INTO [SectionCalculationSchemes] VALUES (3, 1, 1, 3, 1);" + Environment.NewLine + + "INSERT INTO [SectionCalculationSchemes] VALUES (1, 1, 2, 6, 0.5);" + Environment.NewLine + + "INSERT INTO [SectionCalculationSchemes] VALUES (2, 1, 3, 7, 0.6);" + Environment.NewLine + + "INSERT INTO [SectionCalculationSchemes] VALUES (3, 1, 1, 8, 0.7);" + Environment.NewLine + Environment.NewLine + "DELETE FROM [DesignTables];" + Environment.NewLine + "INSERT INTO [DesignTables] VALUES (1, 1, 1, 1, 4, 5, 0, 0, 0, 0, 6.6, 7.7, 1.1);" + Environment.NewLine +