Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextExportInfoTest.cs =================================================================== diff -u -r7fb7b486bcbdd216ef834eaed0c89a1362e119e2 -rd3079ddcf65720b6722bf95759ea0ea48c5f124d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextExportInfoTest.cs) (revision 7fb7b486bcbdd216ef834eaed0c89a1362e119e2) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextExportInfoTest.cs) (revision d3079ddcf65720b6722bf95759ea0ea48c5f124d) @@ -50,7 +50,7 @@ var calculationGroup = new CalculationGroup(); var context = new WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext(calculationGroup, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -67,7 +67,7 @@ public void FileFilter_Always_ReturnsFileFilter() { // Setup - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -91,7 +91,7 @@ var calculationGroup = new CalculationGroup(); var context = new WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext(calculationGroup, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -117,7 +117,7 @@ calculationGroup.Children.Add(new WaveImpactAsphaltCoverWaveConditionsCalculation()); var context = new WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext(calculationGroup, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -151,7 +151,7 @@ }); var context = new WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext(calculationGroup, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -199,7 +199,7 @@ }); var context = new WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext(calculationGroup, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -214,7 +214,7 @@ private static ExportInfo GetExportInfo(WaveImpactAsphaltCoverPlugin plugin) { - return Enumerable.First(plugin.GetExportInfos(), ei => ei.DataType == typeof(WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext)); + return plugin.GetExportInfos().First(ei => ei.DataType == typeof(WaveImpactAsphaltCoverWaveConditionsCalculationGroupContext)); } } } \ No newline at end of file