Index: Riskeer/Integration/src/Riskeer.Integration.IO/Assembly/ExportableAssemblyMethod.cs =================================================================== diff -u -r12a45184a234ff9d485fac043e1668a0c5bf8f93 -r3e226949ec9207c7c698eb2a6fb8fc9f955c32c9 --- Riskeer/Integration/src/Riskeer.Integration.IO/Assembly/ExportableAssemblyMethod.cs (.../ExportableAssemblyMethod.cs) (revision 12a45184a234ff9d485fac043e1668a0c5bf8f93) +++ Riskeer/Integration/src/Riskeer.Integration.IO/Assembly/ExportableAssemblyMethod.cs (.../ExportableAssemblyMethod.cs) (revision 3e226949ec9207c7c698eb2a6fb8fc9f955c32c9) @@ -27,33 +27,78 @@ public enum ExportableAssemblyMethod { /// + /// Represents the assembly method BOI-0A-1. + /// + BOI0A1 = 1, + + /// /// Represents the assembly method BOI-0A-2. /// - BOI0A2 = 1, + BOI0A2 = 2, /// + /// Represents the assembly method BOI-0B-1. + /// + BOI0B1 = 3, + + /// + /// Represents the assembly method BOI-0C-1. + /// + BOI0C1 = 4, + + /// + /// Represents the assembly method BOI-0C-2. + /// + BOI0C2 = 5, + + /// + /// Represents the assembly method BOI-1A-1. + /// + BOI1A1 = 6, + + /// + /// Represents the assembly method BOI-1A-2. + /// + BOI1A2 = 7, + + /// + /// Represents a manual failure mechanism assembly. + /// + Manual = 8, + + /// /// Represents the assembly method BOI-1B-1. /// - BOI1B1 = 2, + BOI1B1 = 9, + + /// + /// Represents the assembly method BOI-2A-1. + /// + BOI2A1 = 10, /// + /// Represents the assembly method BOI-2A-2. + /// + BOI2A2 = 11, + + /// /// Represents the assembly method BOI-2B-1. /// - BOI2B1 = 3, + BOI2B1 = 12, /// /// Represents the assembly method BOI-3A-1. /// - BOI3A1 = 4, + BOI3A1 = 13, /// /// Represents the assembly method BOI-3B-1. /// - BOI3B1 = 5, + BOI3B1 = 14, /// /// Represents the assembly method BOI-3C-1. /// - BOI3C1 = 6 + BOI3C1 = 15 } } \ No newline at end of file Index: Riskeer/Integration/test/Riskeer.Integration.IO.Test/Assembly/ExportableAssemblyMethodTest.cs =================================================================== diff -u -r12a45184a234ff9d485fac043e1668a0c5bf8f93 -r3e226949ec9207c7c698eb2a6fb8fc9f955c32c9 --- Riskeer/Integration/test/Riskeer.Integration.IO.Test/Assembly/ExportableAssemblyMethodTest.cs (.../ExportableAssemblyMethodTest.cs) (revision 12a45184a234ff9d485fac043e1668a0c5bf8f93) +++ Riskeer/Integration/test/Riskeer.Integration.IO.Test/Assembly/ExportableAssemblyMethodTest.cs (.../ExportableAssemblyMethodTest.cs) (revision 3e226949ec9207c7c698eb2a6fb8fc9f955c32c9) @@ -33,22 +33,49 @@ new Dictionary { { - ExportableAssemblyMethod.BOI0A2, 1 + ExportableAssemblyMethod.BOI0A1, 1 }, { - ExportableAssemblyMethod.BOI1B1, 2 + ExportableAssemblyMethod.BOI0A2, 2 }, { - ExportableAssemblyMethod.BOI2B1, 3 + ExportableAssemblyMethod.BOI0B1, 3 }, { - ExportableAssemblyMethod.BOI3A1, 4 + ExportableAssemblyMethod.BOI0C1, 4 }, { - ExportableAssemblyMethod.BOI3B1, 5 + ExportableAssemblyMethod.BOI0C2, 5 }, { - ExportableAssemblyMethod.BOI3C1, 6 + ExportableAssemblyMethod.BOI1A1, 6 + }, + { + ExportableAssemblyMethod.BOI1A2, 7 + }, + { + ExportableAssemblyMethod.Manual, 8 + }, + { + ExportableAssemblyMethod.BOI1B1, 9 + }, + { + ExportableAssemblyMethod.BOI2A1, 10 + }, + { + ExportableAssemblyMethod.BOI2A2, 11 + }, + { + ExportableAssemblyMethod.BOI2B1, 12 + }, + { + ExportableAssemblyMethod.BOI3A1, 13 + }, + { + ExportableAssemblyMethod.BOI3B1, 14 + }, + { + ExportableAssemblyMethod.BOI3C1, 15 } }; }