Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/CategoryBoundaries/CategoryBoundariesCalculator.cs
===================================================================
diff -u
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/CategoryBoundaries/CategoryBoundariesCalculator.cs (revision 0)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/CategoryBoundaries/CategoryBoundariesCalculator.cs (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -0,0 +1,30 @@
+// Copyright (C) Stichting Deltares 2017. 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 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 General Public License for more details.
+//
+// You should have received a copy of the GNU 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.
+
+namespace Ringtoets.AssemblyTool.KernelWrapper.Calculators.CategoryBoundaries
+{
+ ///
+ /// Class representing category boundaries calculator.
+ ///
+ public class CategoryBoundariesCalculator : ICategoryBoundariesCalculator
+ {
+ }
+}
Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/ICategoryBoundariesKernel.cs
===================================================================
diff -u -re58ff3380aae657415e49c4195bdbb5bf66ea05e -r8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/ICategoryBoundariesKernel.cs (.../ICategoryBoundariesKernel.cs) (revision e58ff3380aae657415e49c4195bdbb5bf66ea05e)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/ICategoryBoundariesKernel.cs (.../ICategoryBoundariesKernel.cs) (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -19,6 +19,8 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Ringtoets.AssemblyTool.KernelWrapper.Calculators.CategoryBoundaries;
+
namespace Ringtoets.AssemblyTool.KernelWrapper.Kernels.CategoryBoundaries
{
///
Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj
===================================================================
diff -u -r87abad6666947462479f63c17e381c36861465fb -r8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision 87abad6666947462479f63c17e381c36861465fb)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -12,6 +12,7 @@
+
Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/CategoryBoundaries/CategoryBoundariesCalculatorTest.cs
===================================================================
diff -u
--- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/CategoryBoundaries/CategoryBoundariesCalculatorTest.cs (revision 0)
+++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/CategoryBoundaries/CategoryBoundariesCalculatorTest.cs (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -0,0 +1,40 @@
+// Copyright (C) Stichting Deltares 2017. 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 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 General Public License for more details.
+//
+// You should have received a copy of the GNU 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 NUnit.Framework;
+using Ringtoets.AssemblyTool.KernelWrapper.Calculators.CategoryBoundaries;
+
+namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Calculators.CategoryBoundaries
+{
+ [TestFixture]
+ public class CategoryBoundariesCalculatorTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var calculator = new CategoryBoundariesCalculator();
+
+ // Assert
+ Assert.IsInstanceOf(calculator);
+ }
+ }
+}
\ No newline at end of file
Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj
===================================================================
diff -u -r849d99f3a93b749758a149a4c4a4ef4c39deeb41 -r8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f
--- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision 849d99f3a93b749758a149a4c4a4ef4c39deeb41)
+++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -7,16 +7,27 @@
+
+ ..\..\..\..\packages\NUnit.3.8.1\lib\net40\nunit.framework.dll
+
+
Copying.licenseheader
+
+
+
+ {358B6DA2-A1DF-477F-B6AC-C30204265CB0}
+ Ringtoets.AssemblyTool.KernelWrapper
+
+
\ No newline at end of file
Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/packages.config
===================================================================
diff -u
--- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/packages.config (revision 0)
+++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/packages.config (revision 8fc017868dfcaf97b3d24a47ac4d88cbafc21f2f)
@@ -0,0 +1,26 @@
+
+
+
+
+
\ No newline at end of file