Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismAssemblyCategoryGroupTest.cs =================================================================== diff -u -re795afb9d63bcdce8fb0e8902d13654590ea777c -re43ccfcc421fc9f2e55ab4257bfb0e53828a7911 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismAssemblyCategoryGroupTest.cs (.../FailureMechanismAssemblyCategoryGroupTest.cs) (revision e795afb9d63bcdce8fb0e8902d13654590ea777c) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismAssemblyCategoryGroupTest.cs (.../FailureMechanismAssemblyCategoryGroupTest.cs) (revision e43ccfcc421fc9f2e55ab4257bfb0e53828a7911) @@ -26,13 +26,13 @@ namespace Ringtoets.AssemblyTool.Data.Test { [TestFixture] - public class FailureMechanismAssemblyCategoryGroupTest : EnumValuesTestFixture + public class FailureMechanismAssemblyCategoryGroupTest : EnumWithDisplayNameTestFixture { - protected override IDictionary ExpectedValueForEnumValues + protected override IDictionary ExpectedValueForEnumValues { get { - return new Dictionary + return new Dictionary { { FailureMechanismAssemblyCategoryGroup.None, 1 @@ -64,5 +64,42 @@ }; } } + + protected override IDictionary ExpectedDisplayNameForEnumValues + { + get + { + return new Dictionary + { + { + FailureMechanismAssemblyCategoryGroup.None, "" + }, + { + FailureMechanismAssemblyCategoryGroup.NotApplicable, "-" + }, + { + FailureMechanismAssemblyCategoryGroup.It, "It" + }, + { + FailureMechanismAssemblyCategoryGroup.IIt, "IIt" + }, + { + FailureMechanismAssemblyCategoryGroup.IIIt, "IIIt" + }, + { + FailureMechanismAssemblyCategoryGroup.IVt, "IVt" + }, + { + FailureMechanismAssemblyCategoryGroup.Vt, "Vt" + }, + { + FailureMechanismAssemblyCategoryGroup.VIt, "VIt" + }, + { + FailureMechanismAssemblyCategoryGroup.VIIt, "VIIt" + } + }; + } + } } } \ No newline at end of file