Index: Riskeer/ClosingStructures/test/Riskeer.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -rd3b94aacb873473ebe92d56b4e48341bf4b26412 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/ClosingStructures/test/Riskeer.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../ClosingStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision d3b94aacb873473ebe92d56b4e48341bf4b26412) +++ Riskeer/ClosingStructures/test/Riskeer.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../ClosingStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -107,7 +107,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r3aed1785a0c0f2b283e2138030040e36eaf54674 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 3aed1785a0c0f2b283e2138030040e36eaf54674) +++ Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2019. All rights reserved. +// Copyright (C) Stichting Deltares 2019. All rights reserved. // // This file is part of Riskeer. // @@ -40,7 +40,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Resources { @@ -544,16 +544,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap CalculationIcon { - get { - object obj = ResourceManager.GetObject("CalculationIcon", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Er zijn geen wijzigingen om bij te werken.. /// public static string CalculationItem_No_changes_to_update_ToolTip { @@ -2492,6 +2482,16 @@ } /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap HydraulicCalculationIcon { + get { + object obj = ResourceManager.GetObject("HydraulicCalculationIcon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// /// Looks up a localized string similar to Alle hydraulische belastingen berekenen.. /// public static string HydraulicLoads_Calculate_All_ToolTip { Index: Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx =================================================================== diff -u -r3aed1785a0c0f2b283e2138030040e36eaf54674 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 3aed1785a0c0f2b283e2138030040e36eaf54674) +++ Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -665,7 +665,7 @@ csv - + ..\Resources\calculation_icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Index: Riskeer/Common/src/Riskeer.Common.Forms/TreeNodeInfos/RiskeerTreeNodeInfoFactory.cs =================================================================== diff -u -r528b27af049364e9311a2bef5aeea3aeaa2e9725 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Common/src/Riskeer.Common.Forms/TreeNodeInfos/RiskeerTreeNodeInfoFactory.cs (.../RiskeerTreeNodeInfoFactory.cs) (revision 528b27af049364e9311a2bef5aeea3aeaa2e9725) +++ Riskeer/Common/src/Riskeer.Common.Forms/TreeNodeInfos/RiskeerTreeNodeInfoFactory.cs (.../RiskeerTreeNodeInfoFactory.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -89,7 +89,7 @@ return new TreeNodeInfo { Text = context => context.WrappedData.Name, - Image = context => Resources.CalculationIcon, + Image = context => Resources.HydraulicCalculationIcon, EnsureVisibleOnCreate = (context, parent) => true, ChildNodeObjects = childNodeObjects, ContextMenuStrip = contextMenuStrip, Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/TreeNodeInfos/RiskeerTreeNodeInfoFactoryTest.cs =================================================================== diff -u -r528b27af049364e9311a2bef5aeea3aeaa2e9725 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Common/test/Riskeer.Common.Forms.Test/TreeNodeInfos/RiskeerTreeNodeInfoFactoryTest.cs (.../RiskeerTreeNodeInfoFactoryTest.cs) (revision 528b27af049364e9311a2bef5aeea3aeaa2e9725) +++ Riskeer/Common/test/Riskeer.Common.Forms.Test/TreeNodeInfos/RiskeerTreeNodeInfoFactoryTest.cs (.../RiskeerTreeNodeInfoFactoryTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -605,7 +605,7 @@ public void CreateCalculationContextTreeNodeInfo_Always_ExpectedPropertiesSet() { // Setup - Bitmap icon = RiskeerFormsResources.CalculationIcon; + Bitmap icon = RiskeerFormsResources.HydraulicCalculationIcon; Func childNodeObjects = context => new object[0]; Func contextMenuStrip = (context, parent, treeViewControl) => new ContextMenuStrip(); Action onNodeRemoved = (context, parent) => {}; Index: Riskeer/GrassCoverErosionInwards/test/Riskeer.GrassCoverErosionInwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionInwardsCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r62b486fafff18c27cb4efeb5a52f61ada7d0f432 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/GrassCoverErosionInwards/test/Riskeer.GrassCoverErosionInwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionInwardsCalculationContextTreeNodeInfoTest.cs (.../GrassCoverErosionInwardsCalculationContextTreeNodeInfoTest.cs) (revision 62b486fafff18c27cb4efeb5a52f61ada7d0f432) +++ Riskeer/GrassCoverErosionInwards/test/Riskeer.GrassCoverErosionInwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionInwardsCalculationContextTreeNodeInfoTest.cs (.../GrassCoverErosionInwardsCalculationContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -107,7 +107,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/GrassCoverErosionOutwards/test/Riskeer.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsWaveConditionsCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r56d072b8342f3e54ba89124ab918bd1529e257a3 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/GrassCoverErosionOutwards/test/Riskeer.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 56d072b8342f3e54ba89124ab918bd1529e257a3) +++ Riskeer/GrassCoverErosionOutwards/test/Riskeer.GrassCoverErosionOutwards.Plugin.Test/TreeNodeInfos/GrassCoverErosionOutwardsWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -142,7 +142,7 @@ Image icon = info.Image(context); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, icon); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, icon); } [Test] Index: Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -rd6537c7341346ca27309e5fa46b5a12974d647fe -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision d6537c7341346ca27309e5fa46b5a12974d647fe) +++ Riskeer/HeightStructures/test/Riskeer.HeightStructures.Plugin.Test/TreeNodeInfos/HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -106,7 +106,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -rcae461a4da680a630848ec72744d7afd5cde23a0 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationGroupContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationGroupContextTreeNodeInfoTest.cs) (revision cae461a4da680a630848ec72744d7afd5cde23a0) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationGroupContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationGroupContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -259,7 +259,7 @@ TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddCalculationIndexNestedGroup, "Berekening &toevoegen", "Voeg een nieuwe berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuRenameCalculationGroupIndexNestedGroup, "&Hernoemen", "Wijzig de naam van dit element.", @@ -380,7 +380,7 @@ TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddCalculationIndexRootGroup, "Berekening &toevoegen", "Voeg een nieuwe berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuValidateAllIndexRootGroup, "Alles &valideren", "Valideer alle berekeningen binnen deze map met berekeningen.", Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -rcae461a4da680a630848ec72744d7afd5cde23a0 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs) (revision cae461a4da680a630848ec72744d7afd5cde23a0) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -99,7 +99,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsFailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -rcae461a4da680a630848ec72744d7afd5cde23a0 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsFailureMechanismContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsFailureMechanismContextTreeNodeInfoTest.cs) (revision cae461a4da680a630848ec72744d7afd5cde23a0) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsFailureMechanismContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsFailureMechanismContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -121,7 +121,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -r9d81fce2b4838979d13c48cf0adc054fb240625a -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs (.../PipingCalculationGroupContextTreeNodeInfoTest.cs) (revision 9d81fce2b4838979d13c48cf0adc054fb240625a) +++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs (.../PipingCalculationGroupContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -277,11 +277,11 @@ TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddSemiProbabilisticCalculationIndexNestedGroup, "Semi-probabilistische berekening &toevoegen", "Voeg een nieuwe semi-probabilistische berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddProbabilisticCalculationIndexNestedGroup, "&Probabilistische berekening toevoegen", "Voeg een nieuwe probabilistische berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuRenameCalculationGroupIndexNestedGroup, "&Hernoemen", "Wijzig de naam van dit element.", @@ -407,12 +407,12 @@ TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddSemiProbabilisticCalculationIndexRootGroup, "Semi-probabilistische berekening &toevoegen", "Voeg een nieuwe semi-probabilistische berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuAddProbabilisticCalculationIndexRootGroup, "&Probabilistische berekening toevoegen", "Voeg een nieuwe probabilistische berekening toe aan deze map met berekeningen.", - RiskeerCommonFormsResources.CalculationIcon); + RiskeerCommonFormsResources.HydraulicCalculationIcon); TestHelper.AssertContextMenuStripContainsItem(menu, contextMenuUpdateEntryAndExitPointsAllIndexRootGroup, "&Bijwerken intrede- en uittredepunten...", Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -r9d81fce2b4838979d13c48cf0adc054fb240625a -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision 9d81fce2b4838979d13c48cf0adc054fb240625a) +++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -103,7 +103,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingFailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -ra9d9138b73c38022ecb110a4a5ca573c8dd6dc71 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingFailureMechanismContextTreeNodeInfoTest.cs (.../PipingFailureMechanismContextTreeNodeInfoTest.cs) (revision a9d9138b73c38022ecb110a4a5ca573c8dd6dc71) +++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/PipingFailureMechanismContextTreeNodeInfoTest.cs (.../PipingFailureMechanismContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -121,7 +121,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/ProbabilisticPipingCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -re28e1deac0ad2eb6b39dbeb6ef413c9bf6f8bc43 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/ProbabilisticPipingCalculationContextTreeNodeInfoTest.cs (.../ProbabilisticPipingCalculationContextTreeNodeInfoTest.cs) (revision e28e1deac0ad2eb6b39dbeb6ef413c9bf6f8bc43) +++ Riskeer/Piping/test/Riskeer.Piping.Plugin.Test/TreeNodeInfos/ProbabilisticPipingCalculationContextTreeNodeInfoTest.cs (.../ProbabilisticPipingCalculationContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -99,7 +99,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -rabed8d393cf8e93f39a4f7c0cfc25246424976c9 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision abed8d393cf8e93f39a4f7c0cfc25246424976c9) +++ Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationScenarioContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationScenarioContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -106,7 +106,7 @@ Image image = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, image); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, image); } [Test] Index: Riskeer/StabilityStoneCover/test/Riskeer.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r56d072b8342f3e54ba89124ab918bd1529e257a3 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/StabilityStoneCover/test/Riskeer.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 56d072b8342f3e54ba89124ab918bd1529e257a3) +++ Riskeer/StabilityStoneCover/test/Riskeer.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -133,7 +133,7 @@ Image icon = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, icon); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, icon); } [Test] Index: Riskeer/WaveImpactAsphaltCover/test/Riskeer.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r56d072b8342f3e54ba89124ab918bd1529e257a3 -r2e5b444e91e9bd39e83725489f1c01505df84f76 --- Riskeer/WaveImpactAsphaltCover/test/Riskeer.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 56d072b8342f3e54ba89124ab918bd1529e257a3) +++ Riskeer/WaveImpactAsphaltCover/test/Riskeer.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 2e5b444e91e9bd39e83725489f1c01505df84f76) @@ -133,7 +133,7 @@ Image icon = info.Image(null); // Assert - TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.CalculationIcon, icon); + TestHelper.AssertImagesAreEqual(RiskeerCommonFormsResources.HydraulicCalculationIcon, icon); } [Test]