Index: Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanism.cs =================================================================== diff -u -rb41667ee02ea1f2d7415e7f2f1fd29226d83d806 -r8371cf534baab6a6f2fa98467910b741385a8862 --- Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanism.cs (.../ExportableFailureMechanism.cs) (revision b41667ee02ea1f2d7415e7f2f1fd29226d83d806) +++ Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanism.cs (.../ExportableFailureMechanism.cs) (revision 8371cf534baab6a6f2fa98467910b741385a8862) @@ -7,12 +7,11 @@ /// Class that holds all the information to export the assembly of a failure mechanism. /// /// The type of . - /// The type of . - public class ExportableFailureMechanism + public class ExportableFailureMechanism where TFailureMechanismAssemblyResult : ExportableFailureMechanismAssemblyResult { /// - /// Creates a new instance of + /// Creates a new instance of /// /// The assembly result of the failure mechanism. /// The failure mechanism sections belonging to this failure mechanism. Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismTest.cs =================================================================== diff -u -rb41667ee02ea1f2d7415e7f2f1fd29226d83d806 -r8371cf534baab6a6f2fa98467910b741385a8862 --- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismTest.cs (.../ExportableFailureMechanismTest.cs) (revision b41667ee02ea1f2d7415e7f2f1fd29226d83d806) +++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismTest.cs (.../ExportableFailureMechanismTest.cs) (revision 8371cf534baab6a6f2fa98467910b741385a8862) @@ -22,7 +22,7 @@ var group = random.NextEnumValue(); // Call - TestDelegate call = () => new ExportableFailureMechanism( + TestDelegate call = () => new ExportableFailureMechanism( null, Enumerable.Empty(), sectionAssemblyResults, code, group); // Assert @@ -41,7 +41,7 @@ var group = random.NextEnumValue(); // Call - TestDelegate call = () => new ExportableFailureMechanism( + TestDelegate call = () => new ExportableFailureMechanism( CreateFailureMechanismAssemblyResult(), null, sectionAssemblyResults, code, group); // Assert @@ -59,7 +59,7 @@ var group = random.NextEnumValue(); // Call - TestDelegate call = () => new ExportableFailureMechanism( + TestDelegate call = () => new ExportableFailureMechanism( CreateFailureMechanismAssemblyResult(), sections, null, code, group); // Assert @@ -80,7 +80,7 @@ var group = random.NextEnumValue(); // Call - var failureMechanism = new ExportableFailureMechanism( + var failureMechanism = new ExportableFailureMechanism( failureMechanismAssembly, sections, sectionAssemblyResults, code, group); // Assert