Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapper.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapper.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapper.cs (revision cefaa40de9f2e15377820ff89883c6fe3e13cd19) @@ -0,0 +1,28 @@ +// 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.Kernels.CategoryBoundaries +{ + /// + /// Class that wraps assembly kernel for performing an assembly category boundaries calculation. + /// + internal class AssemblyCategoryBoundariesKernelWrapper : IAssemblyCategoryBoundariesKernel {} +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Properties/AssemblyInfo.cs =================================================================== diff -u -r849d99f3a93b749758a149a4c4a4ef4c39deeb41 -rcefaa40de9f2e15377820ff89883c6fe3e13cd19 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision 849d99f3a93b749758a149a4c4a4ef4c39deeb41) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Properties/AssemblyInfo.cs (.../AssemblyInfo.cs) (revision cefaa40de9f2e15377820ff89883c6fe3e13cd19) @@ -20,6 +20,8 @@ // All rights reserved. using System.Reflection; +using System.Runtime.CompilerServices; [assembly: AssemblyTitle("Ringtoets.AssemblyTool.KernelWrapper")] -[assembly: AssemblyProduct("Ringtoets.AssemblyTool.KernelWrapper")] \ No newline at end of file +[assembly: AssemblyProduct("Ringtoets.AssemblyTool.KernelWrapper")] +[assembly: InternalsVisibleTo("Ringtoets.AssemblyTool.KernelWrapper.Test")] \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj =================================================================== diff -u -r6f872d1783ada708e24bf687fa3f8384c480e0b7 -rcefaa40de9f2e15377820ff89883c6fe3e13cd19 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision 6f872d1783ada708e24bf687fa3f8384c480e0b7) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Ringtoets.AssemblyTool.KernelWrapper.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.csproj) (revision cefaa40de9f2e15377820ff89883c6fe3e13cd19) @@ -14,6 +14,7 @@ + Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapperTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapperTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Kernels/CategoryBoundaries/AssemblyCategoryBoundariesKernelWrapperTest.cs (revision cefaa40de9f2e15377820ff89883c6fe3e13cd19) @@ -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.Kernels.CategoryBoundaries; + +namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Kernels.CategoryBoundaries +{ + [TestFixture] + public class AssemblyCategoryBoundariesKernelWrapperTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Call + var kernelWrapper = new AssemblyCategoryBoundariesKernelWrapper(); + + // Assert + Assert.IsInstanceOf(kernelWrapper); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj =================================================================== diff -u -r6f872d1783ada708e24bf687fa3f8384c480e0b7 -rcefaa40de9f2e15377820ff89883c6fe3e13cd19 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision 6f872d1783ada708e24bf687fa3f8384c480e0b7) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Ringtoets.AssemblyTool.KernelWrapper.Test.csproj (.../Ringtoets.AssemblyTool.KernelWrapper.Test.csproj) (revision cefaa40de9f2e15377820ff89883c6fe3e13cd19) @@ -16,6 +16,7 @@ +