Index: Ringtoets.sln =================================================================== diff -u -r773d32ba918f32fa586ff74c4fc0dc80e89408c8 -rfef9b7f4a9a551e632deb8638ee90b13b0765c60 --- Ringtoets.sln (.../Ringtoets.sln) (revision 773d32ba918f32fa586ff74c4fc0dc80e89408c8) +++ Ringtoets.sln (.../Ringtoets.sln) (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -1840,7 +1840,7 @@ {C90B77DA-E421-43CC-B82E-529651BC21AC} = {C90B77DA-E421-43CC-B82E-529651BC21AC} EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Riskeer.AssemblyTool.Forms.Test", "Ringtoets\AssemblyTool\test\Ringtoets.AssemblyTool.Forms.Test\Riskeer.AssemblyTool.Forms.Test.csproj", "{F6A1570F-AF1E-44BC-AD49-BAC419FE6D38}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Riskeer.AssemblyTool.Forms.Test", "Ringtoets\AssemblyTool\test\Riskeer.AssemblyTool.Forms.Test\Riskeer.AssemblyTool.Forms.Test.csproj", "{F6A1570F-AF1E-44BC-AD49-BAC419FE6D38}" ProjectSection(ProjectDependencies) = postProject {C90B77DA-E421-43CC-B82E-529651BC21AC} = {C90B77DA-E421-43CC-B82E-529651BC21AC} EndProjectSection Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/Properties/AssemblyInfo.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/Riskeer.AssemblyTool.Forms.Test.csproj'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag fef9b7f4a9a551e632deb8638ee90b13b0765c60 refers to a dead (removed) revision in file `Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Forms.Test/packages.config'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,63 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.ComponentModel; +using Core.Common.TestUtil; +using NUnit.Framework; +using Riskeer.AssemblyTool.Data; + +namespace Riskeer.AssemblyTool.Forms.Test +{ + [TestFixture] + public class DisplayFailureMechanismSectionAssemblyCategoryGroupConverterTest + { + [Test] + public void Convert_InvalidValue_ThrowsInvalidEnumArgumentException() + { + // Call + TestDelegate test = () => DisplayFailureMechanismSectionAssemblyCategoryGroupConverter.Convert((FailureMechanismSectionAssemblyCategoryGroup) 99); + + // Assert + const string expectedMessage = "The value of argument 'categoryGroup' (99) is invalid for Enum type 'FailureMechanismSectionAssemblyCategoryGroup'."; + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, expectedMessage); + } + + [Test] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.None, DisplayFailureMechanismSectionAssemblyCategoryGroup.None)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.NotApplicable, DisplayFailureMechanismSectionAssemblyCategoryGroup.NotApplicable)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.Iv, DisplayFailureMechanismSectionAssemblyCategoryGroup.Iv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IIv, DisplayFailureMechanismSectionAssemblyCategoryGroup.IIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IIIv, DisplayFailureMechanismSectionAssemblyCategoryGroup.IIIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IVv, DisplayFailureMechanismSectionAssemblyCategoryGroup.IVv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.Vv, DisplayFailureMechanismSectionAssemblyCategoryGroup.Vv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.VIv, DisplayFailureMechanismSectionAssemblyCategoryGroup.VIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.VIIv, DisplayFailureMechanismSectionAssemblyCategoryGroup.VIIv)] + public void Convert_ValidValue_ReturnsConvertedValue(FailureMechanismSectionAssemblyCategoryGroup categoryGroup, + DisplayFailureMechanismSectionAssemblyCategoryGroup expectedDisplayCategoryGroup) + { + // Call + DisplayFailureMechanismSectionAssemblyCategoryGroup displayCategoryGroup = DisplayFailureMechanismSectionAssemblyCategoryGroupConverter.Convert(categoryGroup); + + // Assert + Assert.AreEqual(expectedDisplayCategoryGroup, displayCategoryGroup); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/DisplayFailureMechanismSectionAssemblyCategoryGroupTest.cs (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,105 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.Collections.Generic; +using Core.Common.TestUtil; +using NUnit.Framework; + +namespace Riskeer.AssemblyTool.Forms.Test +{ + [TestFixture] + public class DisplayFailureMechanismSectionAssemblyCategoryGroupTest : EnumWithResourcesDisplayNameTestFixture + { + protected override IDictionary ExpectedValueForEnumValues + { + get + { + return new Dictionary + { + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.None, 1 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.NotApplicable, 2 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.Iv, 3 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IIv, 4 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IIIv, 5 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IVv, 6 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.Vv, 7 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.VIv, 8 + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.VIIv, 9 + } + }; + } + } + + protected override IDictionary ExpectedDisplayNameForEnumValues + { + get + { + return new Dictionary + { + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.None, "" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.NotApplicable, "-" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.Iv, "Iv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IIv, "IIv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IIIv, "IIIv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.IVv, "IVv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.Vv, "Vv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.VIv, "VIv" + }, + { + DisplayFailureMechanismSectionAssemblyCategoryGroup.VIIv, "VIIv" + } + }; + } + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Properties/AssemblyInfo.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Properties/AssemblyInfo.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Properties/AssemblyInfo.cs (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,25 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.Reflection; + +[assembly: AssemblyTitle("Riskeer.AssemblyTool.Forms.Test")] +[assembly: AssemblyProduct("Riskeer.AssemblyTool.Forms.Test")] \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Riskeer.AssemblyTool.Forms.Test.csproj =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Riskeer.AssemblyTool.Forms.Test.csproj (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/Riskeer.AssemblyTool.Forms.Test.csproj (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,47 @@ + + + + {F6A1570F-AF1E-44BC-AD49-BAC419FE6D38} + Riskeer.AssemblyTool.Forms.Test + Riskeer.AssemblyTool.Forms.Test + + + + + ..\..\..\..\packages\NUnit.3.8.1\lib\net40\nunit.framework.dll + + + + + + + + + + + + + + Copying.licenseheader + + + + + + {F49BD8B2-332A-4C91-A196-8CCE0A2C7D98} + Core.Common.Util + + + {D749EE4C-CE50-4C17-BF01-9A953028C126} + Core.Common.TestUtil + + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Riskeer.AssemblyTool.Data + + + {22C5DDB8-2491-4BC6-BDC6-2A7B7EBF40C1} + Riskeer.AssemblyTool.Forms + + + \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupConverterTest.cs (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,96 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.ComponentModel; +using Core.Common.TestUtil; +using NUnit.Framework; +using Riskeer.AssemblyTool.Data; + +namespace Riskeer.AssemblyTool.Forms.Test +{ + [TestFixture] + public class SelectableFailureMechanismSectionAssemblyCategoryGroupConverterTest + { + [Test] + public void ConvertTo_InvalidValue_ThrowsInvalidEnumArgumentException() + { + // Call + TestDelegate test = () => SelectableFailureMechanismSectionAssemblyCategoryGroupConverter.ConvertTo((FailureMechanismSectionAssemblyCategoryGroup) 99); + + // Assert + const string expectedMessage = "The value of argument 'categoryGroup' (99) is invalid for Enum type 'FailureMechanismSectionAssemblyCategoryGroup'."; + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, expectedMessage); + } + + [Test] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.None, SelectableFailureMechanismSectionAssemblyCategoryGroup.None)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.NotApplicable, SelectableFailureMechanismSectionAssemblyCategoryGroup.NotApplicable)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.Iv, SelectableFailureMechanismSectionAssemblyCategoryGroup.Iv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IIv, SelectableFailureMechanismSectionAssemblyCategoryGroup.IIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IIIv, SelectableFailureMechanismSectionAssemblyCategoryGroup.IIIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.IVv, SelectableFailureMechanismSectionAssemblyCategoryGroup.IVv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.Vv, SelectableFailureMechanismSectionAssemblyCategoryGroup.Vv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.VIv, SelectableFailureMechanismSectionAssemblyCategoryGroup.VIv)] + [TestCase(FailureMechanismSectionAssemblyCategoryGroup.VIIv, SelectableFailureMechanismSectionAssemblyCategoryGroup.VIIv)] + public void ConvertTo_ValidValue_ReturnsConvertedValue(FailureMechanismSectionAssemblyCategoryGroup categoryGroup, + SelectableFailureMechanismSectionAssemblyCategoryGroup expectedSelectableCategoryGroup) + { + // Call + SelectableFailureMechanismSectionAssemblyCategoryGroup selectableCategoryGroup = SelectableFailureMechanismSectionAssemblyCategoryGroupConverter.ConvertTo( + categoryGroup); + + // Assert + Assert.AreEqual(expectedSelectableCategoryGroup, selectableCategoryGroup); + } + + [Test] + public void ConvertFrom_InvalidValue_ThrowsInvalidEnumArgumentException() + { + // Call + TestDelegate test = () => SelectableFailureMechanismSectionAssemblyCategoryGroupConverter.ConvertFrom((SelectableFailureMechanismSectionAssemblyCategoryGroup) 99); + + // Assert + const string expectedMessage = "The value of argument 'categoryGroup' (99) is invalid for Enum type 'SelectableFailureMechanismSectionAssemblyCategoryGroup'."; + TestHelper.AssertThrowsArgumentExceptionAndTestMessage(test, expectedMessage); + } + + [Test] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.None, FailureMechanismSectionAssemblyCategoryGroup.None)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.NotApplicable, FailureMechanismSectionAssemblyCategoryGroup.NotApplicable)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.Iv, FailureMechanismSectionAssemblyCategoryGroup.Iv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.IIv, FailureMechanismSectionAssemblyCategoryGroup.IIv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.IIIv, FailureMechanismSectionAssemblyCategoryGroup.IIIv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.IVv, FailureMechanismSectionAssemblyCategoryGroup.IVv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.Vv, FailureMechanismSectionAssemblyCategoryGroup.Vv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.VIv, FailureMechanismSectionAssemblyCategoryGroup.VIv)] + [TestCase(SelectableFailureMechanismSectionAssemblyCategoryGroup.VIIv, FailureMechanismSectionAssemblyCategoryGroup.VIIv)] + public void ConvertFrom_ValidValue_ReturnsConvertedValue(SelectableFailureMechanismSectionAssemblyCategoryGroup selectableCategoryGroup, + FailureMechanismSectionAssemblyCategoryGroup expectedCategoryGroup) + { + // Call + FailureMechanismSectionAssemblyCategoryGroup categoryGroup = SelectableFailureMechanismSectionAssemblyCategoryGroupConverter.ConvertFrom( + selectableCategoryGroup); + + // Assert + Assert.AreEqual(expectedCategoryGroup, categoryGroup); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/SelectableFailureMechanismSectionAssemblyCategoryGroupTest.cs (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,105 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.Collections.Generic; +using Core.Common.TestUtil; +using NUnit.Framework; + +namespace Riskeer.AssemblyTool.Forms.Test +{ + [TestFixture] + public class SelectableFailureMechanismSectionAssemblyCategoryGroupTest : EnumWithResourcesDisplayNameTestFixture + { + protected override IDictionary ExpectedValueForEnumValues + { + get + { + return new Dictionary + { + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.None, 1 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.NotApplicable, 2 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.Iv, 3 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IIv, 4 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IIIv, 5 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IVv, 6 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.Vv, 7 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.VIv, 8 + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.VIIv, 9 + } + }; + } + } + + protected override IDictionary ExpectedDisplayNameForEnumValues + { + get + { + return new Dictionary + { + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.None, "" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.NotApplicable, "NVT" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.Iv, "Iv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IIv, "IIv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IIIv, "IIIv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.IVv, "IVv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.Vv, "Vv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.VIv, "VIv" + }, + { + SelectableFailureMechanismSectionAssemblyCategoryGroup.VIIv, "VIIv" + } + }; + } + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/packages.config =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/packages.config (revision 0) +++ Ringtoets/AssemblyTool/test/Riskeer.AssemblyTool.Forms.Test/packages.config (revision fef9b7f4a9a551e632deb8638ee90b13b0765c60) @@ -0,0 +1,25 @@ + + + + \ No newline at end of file