Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Properties/Resources.Designer.cs =================================================================== diff -u -r492ad9a8c707d3900471e7597d8490592d7867d8 -raad9abc76e5028fd9a5913176d08723e668ada4b --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 492ad9a8c707d3900471e7597d8490592d7867d8) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision aad9abc76e5028fd9a5913176d08723e668ada4b) @@ -43,7 +43,7 @@ [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 { + internal class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -57,7 +57,7 @@ /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Resources.ResourceManager ResourceManager { + internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ringtoets.MacroStabilityInwards.KernelWrapper.Properties.Resources", typeof(Resources).Assembly); @@ -72,7 +72,7 @@ /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { + internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -84,7 +84,7 @@ /// /// Looks up a localized string similar to Onbekend. /// - public static string UpliftVanKernelMessagesCreator_Create_Unknown { + internal static string UpliftVanKernelMessagesCreator_Create_Unknown { get { return ResourceManager.GetString("UpliftVanKernelMessagesCreator_Create_Unknown", resourceCulture); } Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Ringtoets.MacroStabilityInwards.KernelWrapper.csproj =================================================================== diff -u -r492ad9a8c707d3900471e7597d8490592d7867d8 -raad9abc76e5028fd9a5913176d08723e668ada4b --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Ringtoets.MacroStabilityInwards.KernelWrapper.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.csproj) (revision 492ad9a8c707d3900471e7597d8490592d7867d8) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.KernelWrapper/Ringtoets.MacroStabilityInwards.KernelWrapper.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.csproj) (revision aad9abc76e5028fd9a5913176d08723e668ada4b) @@ -132,7 +132,7 @@ - PublicResXFileCodeGenerator + ResXFileCodeGenerator Resources.Designer.cs Designer Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Output/UpliftVanKernelMessagesCreatorTest.cs =================================================================== diff -u -r492ad9a8c707d3900471e7597d8490592d7867d8 -raad9abc76e5028fd9a5913176d08723e668ada4b --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Output/UpliftVanKernelMessagesCreatorTest.cs (.../UpliftVanKernelMessagesCreatorTest.cs) (revision 492ad9a8c707d3900471e7597d8490592d7867d8) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Creators/Output/UpliftVanKernelMessagesCreatorTest.cs (.../UpliftVanKernelMessagesCreatorTest.cs) (revision aad9abc76e5028fd9a5913176d08723e668ada4b) @@ -70,9 +70,9 @@ Assert.AreEqual("Calculation Error", secondMessage.Message); Assert.AreEqual(UpliftVanKernelMessageType.Error, secondMessage.ResultType); - UpliftVanKernelMessage upliftVanKernelMessage = kernelMessages.ElementAt(2); - Assert.AreEqual("Calculation Fatal Error", upliftVanKernelMessage.Message); - Assert.AreEqual(UpliftVanKernelMessageType.Error, upliftVanKernelMessage.ResultType); + UpliftVanKernelMessage thirdMessage = kernelMessages.ElementAt(2); + Assert.AreEqual("Calculation Fatal Error", thirdMessage.Message); + Assert.AreEqual(UpliftVanKernelMessageType.Error, thirdMessage.ResultType); } [Test]