Index: Core/Common/src/Core.Common.Controls/Core.Common.Controls.csproj
===================================================================
diff -u -r7710a5b982ae6a70d740a6d2af8200560ec37f68 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/src/Core.Common.Controls/Core.Common.Controls.csproj (.../Core.Common.Controls.csproj) (revision 7710a5b982ae6a70d740a6d2af8200560ec37f68)
+++ Core/Common/src/Core.Common.Controls/Core.Common.Controls.csproj (.../Core.Common.Controls.csproj) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -82,6 +82,12 @@
+
+ UserControl
+
+
+ DataGridViewControl.cs
+ Form
@@ -152,6 +158,9 @@
+
+ DataGridViewControl.cs
+ DialogBase.cs
Index: Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.Designer.cs
===================================================================
diff -u
--- Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.Designer.cs (revision 0)
+++ Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.Designer.cs (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -0,0 +1,70 @@
+using System.Windows.Forms;
+
+namespace Core.Common.Controls.DataGrid
+{
+ partial class DataGridViewControl
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.dataGridView = new System.Windows.Forms.DataGridView();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
+ this.SuspendLayout();
+ //
+ // dataGridView
+ //
+ this.dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader;
+ this.dataGridView.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+ this.dataGridView.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
+ this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridView.EditMode = DataGridViewEditMode.EditOnEnter;
+ this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.dataGridView.Location = new System.Drawing.Point(0, 0);
+ this.dataGridView.Name = "dataGridView";
+ this.dataGridView.Size = new System.Drawing.Size(150, 150);
+ this.dataGridView.TabIndex = 0;
+ this.dataGridView.AllowUserToResizeColumns = false;
+ this.dataGridView.AllowUserToResizeRows = false;
+ this.dataGridView.AllowUserToAddRows = false;
+ this.dataGridView.AllowUserToDeleteRows = false;
+ this.dataGridView.StandardTab = true;
+ //
+ // DataGridViewControl
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.dataGridView);
+ this.Name = "DataGridViewControl";
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.DataGridView dataGridView;
+ }
+}
Index: Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs
===================================================================
diff -u
--- Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (revision 0)
+++ Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -0,0 +1,58 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Windows.Forms;
+
+namespace Core.Common.Controls.DataGrid
+{
+ ///
+ /// Wrapper for the .
+ ///
+ public partial class DataGridViewControl : UserControl
+ {
+ ///
+ /// Creates a new instance of .
+ ///
+ public DataGridViewControl()
+ {
+ InitializeComponent();
+ }
+
+ ///
+ /// Adds a new to the with the given data.
+ ///
+ /// The of the column.
+ /// The of the column.
+ /// Indicates wether the column is read-only or not.
+ /// is also used to create the .
+ /// The format is "column_.
+ public void AddTextBoxColumn(string dataPropertyName, string headerText, bool readOnly = false)
+ {
+ dataGridView.Columns.Add(new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = dataPropertyName,
+ HeaderText = headerText,
+ Name = string.Format("column_{0}", dataPropertyName),
+ ReadOnly = readOnly
+ });
+ }
+ }
+}
Index: Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.resx
===================================================================
diff -u
--- Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.resx (revision 0)
+++ Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.resx (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
Index: Core/Common/test/Core.Common.Controls.Test/Core.Common.Controls.Test.csproj
===================================================================
diff -u -r7710a5b982ae6a70d740a6d2af8200560ec37f68 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/Core.Common.Controls.Test.csproj (.../Core.Common.Controls.Test.csproj) (revision 7710a5b982ae6a70d740a6d2af8200560ec37f68)
+++ Core/Common/test/Core.Common.Controls.Test/Core.Common.Controls.Test.csproj (.../Core.Common.Controls.Test.csproj) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -54,6 +54,7 @@
+
@@ -62,6 +63,9 @@
+
+ Copying.Lesser.licenseheader
+
Index: Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewComboBoxItemWrapperTest.cs
===================================================================
diff -u -rc2117f62d195ac85d35d4f983822acf401b66647 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewComboBoxItemWrapperTest.cs (.../DataGridViewComboBoxItemWrapperTest.cs) (revision c2117f62d195ac85d35d4f983822acf401b66647)
+++ Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewComboBoxItemWrapperTest.cs (.../DataGridViewComboBoxItemWrapperTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using Core.Common.Controls.DataGrid;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using Core.Common.Controls.DataGrid;
using NUnit.Framework;
namespace Core.Common.Controls.Test.DataGrid
Index: Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewControlTest.cs
===================================================================
diff -u
--- Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewControlTest.cs (revision 0)
+++ Core/Common/test/Core.Common.Controls.Test/DataGrid/DataGridViewControlTest.cs (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -0,0 +1,110 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Windows.Forms;
+using Core.Common.Controls.DataGrid;
+using NUnit.Extensions.Forms;
+using NUnit.Framework;
+
+namespace Core.Common.Controls.Test.DataGrid
+{
+ [TestFixture]
+ public class DataGridViewControlTest
+ {
+ [Test]
+ public void Constructor_DefaultValues()
+ {
+ // Call
+ using (var control = new DataGridViewControl())
+ {
+ // Assert
+ Assert.IsInstanceOf(control);
+ Assert.AreEqual(1, control.Controls.Count);
+
+ var dataGridView = control.Controls[0];
+ Assert.IsInstanceOf(dataGridView);
+ Assert.AreEqual(DockStyle.Fill, dataGridView.Dock);
+ }
+ }
+
+ [Test]
+ public void Constructor_DataGridViewCorrectlyInitialized()
+ {
+ // Setup
+ using (var form = new Form())
+ {
+ // Call
+ var control = new DataGridViewControl();
+ form.Controls.Add(control);
+ form.Show();
+
+ var dataGridView = (DataGridView) new ControlTester("dataGridView").TheObject;
+
+ // Assert
+ Assert.AreEqual(0, dataGridView.ColumnCount);
+ Assert.AreEqual(DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader, dataGridView.AutoSizeColumnsMode);
+ Assert.AreEqual(DataGridViewContentAlignment.MiddleCenter, dataGridView.ColumnHeadersDefaultCellStyle.Alignment);
+ Assert.AreEqual(DataGridViewEditMode.EditOnEnter, dataGridView.EditMode);
+ Assert.AreEqual(DataGridViewColumnHeadersHeightSizeMode.AutoSize, dataGridView.ColumnHeadersHeightSizeMode);
+ Assert.AreEqual(DataGridViewRowHeadersWidthSizeMode.DisableResizing, dataGridView.RowHeadersWidthSizeMode);
+ Assert.IsFalse(dataGridView.AllowUserToResizeColumns);
+ Assert.IsFalse(dataGridView.AllowUserToResizeRows);
+ Assert.IsFalse(dataGridView.AllowUserToAddRows);
+ Assert.IsFalse(dataGridView.AllowUserToDeleteRows);
+ Assert.IsTrue(dataGridView.StandardTab);
+ }
+ }
+
+ [Test]
+ [TestCase(true)]
+ [TestCase(false)]
+ public void AddTextBoxColumn_Always_AddsColumnToDataGridView(bool readOnly)
+ {
+ // Setup
+ using (var form = new Form())
+ {
+ var propertyName = "PropertyName";
+ var headerText = "HeaderText";
+
+ var control = new DataGridViewControl();
+ form.Controls.Add(control);
+ form.Show();
+
+ var dataGridView = (DataGridView) new ControlTester("dataGridView").TheObject;
+
+ // Precondition
+ Assert.AreEqual(0, dataGridView.ColumnCount);
+
+ // Call
+ control.AddTextBoxColumn(propertyName, headerText, readOnly);
+
+ // Assert
+ Assert.AreEqual(1, dataGridView.ColumnCount);
+
+ var columnData = dataGridView.Columns[0];
+ Assert.AreEqual(propertyName, columnData.DataPropertyName);
+ Assert.AreEqual(string.Format("column_{0}", propertyName), columnData.Name);
+ Assert.AreEqual(headerText, columnData.HeaderText);
+ Assert.AreEqual(readOnly, columnData.ReadOnly);
+ }
+ }
+ }
+}
\ No newline at end of file
Index: Core/Common/test/Core.Common.Controls.Test/Dialogs/DialogBaseTest.cs
===================================================================
diff -u -red0efdcfe1c041f58f65ac59a18c42bd1df9f1ff -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/Dialogs/DialogBaseTest.cs (.../DialogBaseTest.cs) (revision ed0efdcfe1c041f58f65ac59a18c42bd1df9f1ff)
+++ Core/Common/test/Core.Common.Controls.Test/Dialogs/DialogBaseTest.cs (.../DialogBaseTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using System;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
using System.Drawing;
using System.Windows.Forms;
using Core.Common.Controls.Dialogs;
Index: Core/Common/test/Core.Common.Controls.Test/Dialogs/ExceptionDialogTest.cs
===================================================================
diff -u -r77d3027ff4e61c4ef794f6632b08fedd286a1c4c -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/Dialogs/ExceptionDialogTest.cs (.../ExceptionDialogTest.cs) (revision 77d3027ff4e61c4ef794f6632b08fedd286a1c4c)
+++ Core/Common/test/Core.Common.Controls.Test/Dialogs/ExceptionDialogTest.cs (.../ExceptionDialogTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using System;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
using System.Windows.Forms;
using Core.Common.Controls.Dialogs;
using NUnit.Extensions.Forms;
Index: Core/Common/test/Core.Common.Controls.Test/PresentationObjects/WrappedObjectContextBaseTest.cs
===================================================================
diff -u -r7710a5b982ae6a70d740a6d2af8200560ec37f68 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/PresentationObjects/WrappedObjectContextBaseTest.cs (.../WrappedObjectContextBaseTest.cs) (revision 7710a5b982ae6a70d740a6d2af8200560ec37f68)
+++ Core/Common/test/Core.Common.Controls.Test/PresentationObjects/WrappedObjectContextBaseTest.cs (.../WrappedObjectContextBaseTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,5 +1,26 @@
-using System;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+using System;
+
using Core.Common.Base;
using Core.Common.Controls.PresentationObjects;
using Core.Common.TestUtil;
Index: Core/Common/test/Core.Common.Controls.Test/Properties/AssemblyInfo.cs
===================================================================
diff -u -r1cfb16d56f5e2e0067f1e9d9b8af401883697687 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 1cfb16d56f5e2e0067f1e9d9b8af401883697687)
+++ Core/Common/test/Core.Common.Controls.Test/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using System.Reflection;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Core.Common.Controls.Test")]
Index: Core/Common/test/Core.Common.Controls.Test/TextEditor/RichTextBoxControlTest.cs
===================================================================
diff -u -r840f944663498af53c8bc3013a0ce5232e4da84c -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/TextEditor/RichTextBoxControlTest.cs (.../RichTextBoxControlTest.cs) (revision 840f944663498af53c8bc3013a0ce5232e4da84c)
+++ Core/Common/test/Core.Common.Controls.Test/TextEditor/RichTextBoxControlTest.cs (.../RichTextBoxControlTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using System.Collections.Generic;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using Core.Common.Controls.TextEditor;
Index: Core/Common/test/Core.Common.Controls.Test/Views/HtmlPageViewTest.cs
===================================================================
diff -u -r770547be3030f73473282742f9a63ca6805ff74b -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/Views/HtmlPageViewTest.cs (.../HtmlPageViewTest.cs) (revision 770547be3030f73473282742f9a63ca6805ff74b)
+++ Core/Common/test/Core.Common.Controls.Test/Views/HtmlPageViewTest.cs (.../HtmlPageViewTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,25 @@
-using System;
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
using System.Windows.Forms;
using Core.Common.Controls.Views;
using Core.Common.TestUtil;
Index: Core/Common/test/Core.Common.Controls.Test/packages.config
===================================================================
diff -u -r23fe53f413f6c6396c34b033be59be1b216e4a4c -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Core/Common/test/Core.Common.Controls.Test/packages.config (.../packages.config) (revision 23fe53f413f6c6396c34b033be59be1b216e4a4c)
+++ Core/Common/test/Core.Common.Controls.Test/packages.config (.../packages.config) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -1,4 +1,27 @@
+
+
Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/ViewInfos/HeightStructuresFailureMechanismResultViewInfoTest.cs
===================================================================
diff -u -r3280840f72a6c61740b803385f3af8ec1f6ede91 -rf1be6965092b5dc1b0e2e145d59e718493351fb8
--- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/ViewInfos/HeightStructuresFailureMechanismResultViewInfoTest.cs (.../HeightStructuresFailureMechanismResultViewInfoTest.cs) (revision 3280840f72a6c61740b803385f3af8ec1f6ede91)
+++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/ViewInfos/HeightStructuresFailureMechanismResultViewInfoTest.cs (.../HeightStructuresFailureMechanismResultViewInfoTest.cs) (revision f1be6965092b5dc1b0e2e145d59e718493351fb8)
@@ -19,18 +19,14 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-using System;
using System.Collections.Generic;
using System.Linq;
-using Core.Common.Base;
using Core.Common.Base.Geometry;
using Core.Common.Gui.Plugin;
using Core.Common.TestUtil;
using NUnit.Framework;
using Rhino.Mocks;
using Ringtoets.Common.Data.AssessmentSection;
-using Ringtoets.Common.Data.Calculation;
-using Ringtoets.Common.Data.Contribution;
using Ringtoets.Common.Data.FailureMechanism;
using Ringtoets.Common.Forms.PresentationObjects;
using Ringtoets.HeightStructures.Data;