Index: Core/Common/test/Core.Common.Gui.Test/Forms/ViewHost/AvalonDockViewHostTest.cs =================================================================== diff -u -r8905298103eb01ce13dd5c1a2f267f879d4fda3e -rcf9cd9f3225c44880a5e966117e0f2c09fc2d4b0 --- Core/Common/test/Core.Common.Gui.Test/Forms/ViewHost/AvalonDockViewHostTest.cs (.../AvalonDockViewHostTest.cs) (revision 8905298103eb01ce13dd5c1a2f267f879d4fda3e) +++ Core/Common/test/Core.Common.Gui.Test/Forms/ViewHost/AvalonDockViewHostTest.cs (.../AvalonDockViewHostTest.cs) (revision cf9cd9f3225c44880a5e966117e0f2c09fc2d4b0) @@ -118,12 +118,12 @@ var firedEvents = new List(); var control1 = new TextBox(); - control1.Validating += (sender, args) => { firedEvents.Add(validatingTextBoxEventName); }; - control1.Validated += (sender, args) => { firedEvents.Add(validatedTextBoxEventName); }; + control1.Validating += (sender, args) => firedEvents.Add(validatingTextBoxEventName); + control1.Validated += (sender, args) => firedEvents.Add(validatedTextBoxEventName); var control2 = new NumericUpDown(); - control2.Validating += (sender, args) => { firedEvents.Add(validatingNumericUpDownEventName); }; - control2.Validated += (sender, args) => { firedEvents.Add(validatedNumericUpDownEventName); }; + control2.Validating += (sender, args) => firedEvents.Add(validatingNumericUpDownEventName); + control2.Validated += (sender, args) => firedEvents.Add(validatedNumericUpDownEventName); var testView = new TestView(); testView.Controls.AddRange(new Control[] Index: Core/Common/test/Core.Common.TestUtil.Test/ControlsTestHelperTest.cs =================================================================== diff -u -r8905298103eb01ce13dd5c1a2f267f879d4fda3e -rcf9cd9f3225c44880a5e966117e0f2c09fc2d4b0 --- Core/Common/test/Core.Common.TestUtil.Test/ControlsTestHelperTest.cs (.../ControlsTestHelperTest.cs) (revision 8905298103eb01ce13dd5c1a2f267f879d4fda3e) +++ Core/Common/test/Core.Common.TestUtil.Test/ControlsTestHelperTest.cs (.../ControlsTestHelperTest.cs) (revision cf9cd9f3225c44880a5e966117e0f2c09fc2d4b0) @@ -59,11 +59,11 @@ form.Show(); var raisedEvents = new Collection(); - control.SelectedIndexChanged += (sender, args) => { raisedEvents.Add(selectedindexchanged); }; - control.SelectedValueChanged += (sender, args) => { raisedEvents.Add(selectedvaluechanged); }; - control.SelectionChangeCommitted += (sender, args) => { raisedEvents.Add(selectionchangecommitted); }; - control.Validating += (sender, args) => { Assert.Fail("Validating event should not be fired as 'FakeUserSelectingNewValue' method does not handle focus-changes."); }; - control.Validated += (sender, args) => { Assert.Fail("Validated event should not be fired as 'FakeUserSelectingNewValue' method does not handle focus-changes."); }; + control.SelectedIndexChanged += (sender, args) => raisedEvents.Add(selectedindexchanged); + control.SelectedValueChanged += (sender, args) => raisedEvents.Add(selectedvaluechanged); + control.SelectionChangeCommitted += (sender, args) => raisedEvents.Add(selectionchangecommitted); + control.Validating += (sender, args) => Assert.Fail("Validating event should not be fired as 'FakeUserSelectingNewValue' method does not handle focus-changes."); + control.Validated += (sender, args) => Assert.Fail("Validated event should not be fired as 'FakeUserSelectingNewValue' method does not handle focus-changes."); // Call ControlsTestHelper.FakeUserSelectingNewValue(control, value2); Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/PropertyClasses/ClosingStructuresInputContextPropertiesTest.cs =================================================================== diff -u -r8905298103eb01ce13dd5c1a2f267f879d4fda3e -rcf9cd9f3225c44880a5e966117e0f2c09fc2d4b0 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/PropertyClasses/ClosingStructuresInputContextPropertiesTest.cs (.../ClosingStructuresInputContextPropertiesTest.cs) (revision 8905298103eb01ce13dd5c1a2f267f879d4fda3e) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/PropertyClasses/ClosingStructuresInputContextPropertiesTest.cs (.../ClosingStructuresInputContextPropertiesTest.cs) (revision cf9cd9f3225c44880a5e966117e0f2c09fc2d4b0) @@ -474,7 +474,7 @@ string newProbabilityString = string.Concat(newValue.ToString("r", CultureInfo.CurrentCulture), overflow); // Call - TestDelegate call = () => { properties.FailureProbabilityReparation = newProbabilityString; }; + TestDelegate call = () => properties.FailureProbabilityReparation = newProbabilityString; // Assert var expectedMessage = "De waarde voor de faalkans is te groot of te klein."; Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r8905298103eb01ce13dd5c1a2f267f879d4fda3e -rcf9cd9f3225c44880a5e966117e0f2c09fc2d4b0 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 8905298103eb01ce13dd5c1a2f267f879d4fda3e) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision cf9cd9f3225c44880a5e966117e0f2c09fc2d4b0) @@ -309,7 +309,7 @@ Image = RingtoetsCommonFormsResources.FailureMechanismContributionIcon, CloseForData = CloseFailureMechanismContributionViewForData, CreateInstance = () => new FailureMechanismContributionView(Gui.ViewCommands), - AfterCreate = (view, context) => { view.AssessmentSection = context.Parent; } + AfterCreate = (view, context) => view.AssessmentSection = context.Parent }; yield return new ViewInfo, DesignWaterLevelLocationsView>