Index: Application/Ringtoets/test/Application.Ringtoets.Integration.Test/ResourcesTest.cs =================================================================== diff -u -rd298771e8a90479eda5c2f12b13278900a4dcff2 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Application/Ringtoets/test/Application.Ringtoets.Integration.Test/ResourcesTest.cs (.../ResourcesTest.cs) (revision d298771e8a90479eda5c2f12b13278900a4dcff2) +++ Application/Ringtoets/test/Application.Ringtoets.Integration.Test/ResourcesTest.cs (.../ResourcesTest.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -51,9 +51,9 @@ // Setup string solution = Directory.GetParent(Directory.GetCurrentDirectory()).Parent.Parent.Parent.Parent.Parent.FullName; string outputPath = Directory.GetCurrentDirectory(); - string resource = "Resources.resx"; - string sourceCode = "*.cs;*.xaml"; - string filters = "Resources.designer.cs;test"; + const string resource = "Resources.resx"; + const string sourceCode = "*.cs;*.xaml"; + const string filters = "Resources.designer.cs;test"; string searchPatterns = Regex.Replace("\\[.*\\(typeof\\(.*Resources\\).*\"-f-\".*\\)\\];\"-f-\"\\);Resources.-f-;Resources\\\\-f-", @"(\\*)" + "\"", @"$1$1\" + "\""); string directory = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "UnusedResourceSearcher"); @@ -65,7 +65,7 @@ { UseShellExecute = false, CreateNoWindow = true, - Arguments = string.Format("{0} {1} {2} {3} {4} {5}", solution, outputPath, resource, sourceCode, filters, searchPatterns) + Arguments = string.Join(" ", solution, outputPath, resource, sourceCode, filters, searchPatterns) } }; @@ -85,11 +85,11 @@ } } - // There are 30 entries because we can't filter them with our search patterns. + // There are 25 entries because we can't filter them with our search patterns. var message = string.Format("The following resources are marked as unused:{0}{1}", Environment.NewLine, string.Join(Environment.NewLine, lines.OrderBy(s => s).ToList())); - Assert.AreEqual(30, lines.Count, message); + Assert.AreEqual(25, lines.Count, message); } } } \ No newline at end of file Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/StorageSqLiteTest.cs =================================================================== diff -u -rf60662cc8bcf55ea16dec82ebc17bfe3e7356f71 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/StorageSqLiteTest.cs (.../StorageSqLiteTest.cs) (revision f60662cc8bcf55ea16dec82ebc17bfe3e7356f71) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/StorageSqLiteTest.cs (.../StorageSqLiteTest.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -23,7 +23,6 @@ using System.Data; using System.Data.SQLite; using System.IO; -using Application.Ringtoets.Storage.Properties; using Application.Ringtoets.Storage.TestUtil; using Core.Common.Base.Data; using Core.Common.Base.Storage; @@ -94,7 +93,8 @@ // Setup string validPath = "empty.rtd"; var tempFile = Path.Combine(testDataPath, validPath); - string expectedMessage = string.Format(@"Fout bij het lezen van bestand '{0}': {1}", tempFile, @"Het bestand is geen geldig Ringtoets bestand."); + string expectedMessage = string.Format(@"Fout bij het lezen van bestand '{0}': {1}", + tempFile, @"Het bestand is geen geldig Ringtoets bestand."); // Call TestDelegate test = () => new StorageSqLite().LoadProject(tempFile); @@ -118,7 +118,8 @@ TestDelegate test = () => new StorageSqLite().LoadProject(tempRingtoetsFile); // Assert - var expectedMessage = string.Format(@"Fout bij het lezen van bestand '{0}': {1}", tempRingtoetsFile, Resources.StorageSqLite_LoadProject_Invalid_Ringtoets_database_file); + var expectedMessage = string.Format(@"Fout bij het lezen van bestand '{0}': {1}", + tempRingtoetsFile, @"Het bestand is geen geldig Ringtoets bestand."); StorageException exception = Assert.Throws(test); Assert.IsInstanceOf(exception); @@ -462,7 +463,7 @@ } [Test] - public void SaveProkectAs_NoStagedProject_ThrowInvalidOperationException() + public void SaveProjectAs_NoStagedProject_ThrowInvalidOperationException() { // Setup var storage = new StorageSqLite(); @@ -599,7 +600,7 @@ { // Setup StorageSqLite storageSqLite = new StorageSqLite(); - RingtoetsProject storedProject = RingtoetsProjectTestHelper.GetFullTestProject(); //new RingtoetsProject(); + RingtoetsProject storedProject = RingtoetsProjectTestHelper.GetFullTestProject(); var changedDescription = "some description"; FileDisposeHelper fileDisposeHelper = new FileDisposeHelper(tempRingtoetsFile); Index: Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj =================================================================== diff -u -rc23e1b5f6b00b5c78641c3792fd59f178dbe3ad4 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision c23e1b5f6b00b5c78641c3792fd59f178dbe3ad4) +++ Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -333,7 +333,6 @@ - @@ -359,9 +358,6 @@ - - - Index: Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs =================================================================== diff -u -rc23e1b5f6b00b5c78641c3792fd59f178dbe3ad4 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision c23e1b5f6b00b5c78641c3792fd59f178dbe3ad4) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -219,16 +219,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap chart_curve { - get { - object obj = ResourceManager.GetObject("chart_curve", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap ClosePreviewHH { get { object obj = ResourceManager.GetObject("ClosePreviewHH", resourceCulture); @@ -1041,16 +1031,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - public static System.Drawing.Icon plus { - get { - object obj = ResourceManager.GetObject("plus", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ProjectIcon { Index: Core/Common/src/Core.Common.Gui/Properties/Resources.resx =================================================================== diff -u -rc23e1b5f6b00b5c78641c3792fd59f178dbe3ad4 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision c23e1b5f6b00b5c78641c3792fd59f178dbe3ad4) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -160,9 +160,6 @@ Berichten - - ..\Resources\chart_curve.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\application_view_list.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -430,9 +427,6 @@ ..\Resources\arrow-000-medium-question-mark.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\plus.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\key.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Index: Core/Common/src/Core.Common.Gui/Resources/chart_curve.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/plus.ico =================================================================== diff -u -r59df4f03c40f731cb7f7c017e574143537a7e8a8 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 Binary files differ Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r3450f7ca7e4504b963bd760cf28939c02ffc0b68 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 3450f7ca7e4504b963bd760cf28939c02ffc0b68) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -410,33 +410,6 @@ } /// - /// Looks up a localized string similar to Er zijn geen berekeningen of mappen om te verwijderen.. - /// - public static string CalculationGroup_RemoveAllChildrenFromGroup_No_Calculation_or_Group_to_remove { - get { - return ResourceManager.GetString("CalculationGroup_RemoveAllChildrenFromGroup_No_Calculation_or_Group_to_remove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Map &leegmaken.... - /// - public static string CalculationGroup_RemoveAllChildrenFromGroup_Remove_all { - get { - return ResourceManager.GetString("CalculationGroup_RemoveAllChildrenFromGroup_Remove_all", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Verwijder alle berekeningen en mappen binnen deze map.. - /// - public static string CalculationGroup_RemoveAllChildrenFromGroup_Remove_all_Tooltip { - get { - return ResourceManager.GetString("CalculationGroup_RemoveAllChildrenFromGroup_Remove_all_Tooltip", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Valideer alle berekeningen binnen deze berekeningsmap.. /// public static string CalculationGroup_Validate_all_ToolTip { Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx =================================================================== diff -u -r3450f7ca7e4504b963bd760cf28939c02ffc0b68 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 3450f7ca7e4504b963bd760cf28939c02ffc0b68) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -421,18 +421,9 @@ Voeg een nieuw traject toe aan het project. - - Map &leegmaken... - Weet u zeker dat u alles binnen deze Berekeningen map wilt verwijderen? - - Er zijn geen berekeningen of mappen om te verwijderen. - - - Verwijder alle berekeningen en mappen binnen deze map. - Genereer &berekeningen... Index: Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.Designer.cs =================================================================== diff -u -rc7d39e2c22a5df98a9f398cab98040a51faba283 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision c7d39e2c22a5df98a9f398cab98040a51faba283) +++ Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -22,7 +22,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -109,15 +109,6 @@ } /// - /// Looks up a localized string similar to Er is geen hydraulische randvoorwaardendatabase geïmporteerd.. - /// - public static string CalculationService_ValidateInput_No_hydraulic_boundary_database_selected { - get { - return ResourceManager.GetString("CalculationService_ValidateInput_No_hydraulic_boundary_database_selected", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Er is geen hydraulische randvoorwaardenlocatie geselecteerd.. /// public static string CalculationService_ValidateInput_No_hydraulic_boundary_location_selected { Index: Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.resx =================================================================== diff -u -rc7d39e2c22a5df98a9f398cab98040a51faba283 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.resx (.../Resources.resx) (revision c7d39e2c22a5df98a9f398cab98040a51faba283) +++ Ringtoets/Common/src/Ringtoets.Common.Service/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -162,9 +162,6 @@ Er is geen geldige damhoogte ingevoerd. - - Er is geen hydraulische randvoorwaardendatabase geïmporteerd. - De variatiecoëfficient voor '{0}' moet groter zijn dan of gelijk zijn aan 0. Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.Designer.cs =================================================================== diff -u -r0de4a3b3784fd5e76f15333911f5d65256889fe5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 0de4a3b3784fd5e76f15333911f5d65256889fe5) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -82,15 +82,6 @@ } /// - /// Looks up a localized string similar to Kan het Hydra-Ring uitvoerbestand {0} noch het logbestand {1} lezen uit de map {2}.. - /// - internal static string Parse_Cannot_read_FileName_0_nor_FileName_1_from_FolderPath_2_ { - get { - return ResourceManager.GetString("Parse_Cannot_read_FileName_0_nor_FileName_1_from_FolderPath_2_", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Kan het Hydra-Ring last_error bestand {0} niet lezen uit de map {1}.. /// internal static string Parse_Cannot_read_last_error_Filename_0_from_FolderPath_1_ { Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.resx =================================================================== diff -u -r0de4a3b3784fd5e76f15333911f5d65256889fe5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.resx (.../Resources.resx) (revision 0de4a3b3784fd5e76f15333911f5d65256889fe5) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -117,9 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Kan het Hydra-Ring uitvoerbestand {0} noch het logbestand {1} lezen uit de map {2}. - Kan het Hydra-Ring last_error bestand {0} niet lezen uit de map {1}. Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.Designer.cs =================================================================== diff -u -raf62e374c37713df98c2866ec4bfa64206b5b2b3 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision af62e374c37713df98c2866ec4bfa64206b5b2b3) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -182,16 +182,6 @@ } /// - /// Looks up a localized string similar to Kritische veiligheidsfactor voor opbarsten moet in het bereik (0, 50] liggen.. - /// - public static string PipingProbabilityAssessmentInput_UpliftCriticalSafetyFactor_Value_must_be_in_range_zero_and_fifty { - get { - return ResourceManager.GetString("PipingProbabilityAssessmentInput_UpliftCriticalSafetyFactor_Value_must_be_in_rang" + - "e_zero_and_fifty", resourceCulture); - } - } - - /// /// Looks up a localized string similar to De geometrie bevat geen punt op locatie {0} om als '{1}' in te stellen.. /// public static string RingtoetsPipingSurfaceLine_SetCharacteristicPointAt_Geometry_does_not_contain_point_at_0_to_assign_as_characteristic_point_1_ { Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.resx =================================================================== diff -u -raf62e374c37713df98c2866ec4bfa64206b5b2b3 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.resx (.../Resources.resx) (revision af62e374c37713df98c2866ec4bfa64206b5b2b3) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -153,7 +153,4 @@ Het gespecificeerde punt moet op het profiel liggen (bereik [{0}, {1}]). - - Kritische veiligheidsfactor voor opbarsten moet in het bereik (0, 50] liggen. - \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.Designer.cs =================================================================== diff -u -rfea3ed82dfb6dfcad535eef16efcbaa9c01564ed -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision fea3ed82dfb6dfcad535eef16efcbaa9c01564ed) +++ Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -22,7 +22,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -132,46 +132,6 @@ /// /// Looks up a localized resource of type System.Byte[]. /// - internal static byte[] traject_10_1_vakken { - get { - object obj = ResourceManager.GetObject("traject_10_1_vakken", resourceCulture); - return ((byte[])(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Byte[]. - /// - internal static byte[] traject_10_1_vakken1 { - get { - object obj = ResourceManager.GetObject("traject_10_1_vakken1", resourceCulture); - return ((byte[])(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Byte[]. - /// - internal static byte[] traject_10_1_vakken2 { - get { - object obj = ResourceManager.GetObject("traject_10_1_vakken2", resourceCulture); - return ((byte[])(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Byte[]. - /// - internal static byte[] traject_10_1_vakken3 { - get { - object obj = ResourceManager.GetObject("traject_10_1_vakken3", resourceCulture); - return ((byte[])(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Byte[]. - /// internal static byte[] traject_6_3 { get { object obj = ResourceManager.GetObject("traject_6_3", resourceCulture); Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.resx =================================================================== diff -u -r72b14f81893052504911982f4e4b87c3f15022b5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.resx (.../Resources.resx) (revision 72b14f81893052504911982f4e4b87c3f15022b5) +++ Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -133,18 +133,6 @@ ..\Resources\HRD dutch coast south.sqlite;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\traject_10-1_vakken.dbf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ..\Resources\traject_10-1_vakken.prj;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ..\Resources\traject_10-1_vakken.shp;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ..\Resources\traject_10-1_vakken.shx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - ..\Resources\traject_6-3.dbf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Resources/traject_10-1_vakken.dbf =================================================================== diff -u -r72b14f81893052504911982f4e4b87c3f15022b5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 Binary files differ Fisheye: Tag 7f23a4db56f6488efa09d7a54bcbf5f0756eb609 refers to a dead (removed) revision in file `Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Resources/traject_10-1_vakken.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Resources/traject_10-1_vakken.shp =================================================================== diff -u -r72b14f81893052504911982f4e4b87c3f15022b5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 Binary files differ Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Resources/traject_10-1_vakken.shx =================================================================== diff -u -r72b14f81893052504911982f4e4b87c3f15022b5 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 Binary files differ Index: Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Ringtoets.Piping.Integration.Test.csproj =================================================================== diff -u -rbc4c4000ca4a850b49a88156ca2b919ea690494b -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Ringtoets.Piping.Integration.Test.csproj (.../Ringtoets.Piping.Integration.Test.csproj) (revision bc4c4000ca4a850b49a88156ca2b919ea690494b) +++ Ringtoets/Piping/test/Ringtoets.Piping.Integration.Test/Ringtoets.Piping.Integration.Test.csproj (.../Ringtoets.Piping.Integration.Test.csproj) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -145,10 +145,6 @@ - - - - Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.Designer.cs =================================================================== diff -u -rdc0514a27cbec73b00a8465a1b15ab207dca4a84 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision dc0514a27cbec73b00a8465a1b15ab207dca4a84) +++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -22,7 +22,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -82,15 +82,6 @@ } /// - /// Looks up a localized string similar to Stapgrootte moet groter zijn dan 0.. - /// - internal static string WaveConditionsInput_StepSize_Should_be_greater_than_zero { - get { - return ResourceManager.GetString("WaveConditionsInput_StepSize_Should_be_greater_than_zero", resourceCulture); - } - } - - /// /// Looks up a localized string similar to De bovengrens van de bekleding moet boven de ondergrens liggen.. /// internal static string WaveConditionsInput_ValidateRevetmentBoundaries_Upper_boundary_revetment_must_be_above_lower_boundary_revetment { Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.resx =================================================================== diff -u -rdc0514a27cbec73b00a8465a1b15ab207dca4a84 -r7f23a4db56f6488efa09d7a54bcbf5f0756eb609 --- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.resx (.../Resources.resx) (revision dc0514a27cbec73b00a8465a1b15ab207dca4a84) +++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/Properties/Resources.resx (.../Resources.resx) (revision 7f23a4db56f6488efa09d7a54bcbf5f0756eb609) @@ -123,9 +123,6 @@ De bovengrens van de bekleding moet boven de ondergrens liggen. - - Stapgrootte moet groter zijn dan 0. - 0.5