Index: Ringtoets/Integration/src/Ringtoets.Integration.IO/Factories/ExportableFailureMechanismSectionFactory.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/src/Ringtoets.Integration.IO/Factories/ExportableFailureMechanismSectionFactory.cs (.../ExportableFailureMechanismSectionFactory.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/src/Ringtoets.Integration.IO/Factories/ExportableFailureMechanismSectionFactory.cs (.../ExportableFailureMechanismSectionFactory.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -28,7 +28,7 @@
namespace Ringtoets.Integration.IO.Factories
{
///
- /// Factory to create instance of .
+ /// Factory to create instances of .
///
public static class ExportableFailureMechanismSectionFactory
{
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultBaseTest.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultBaseTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultBaseTest.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultBaseTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultBaseTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -44,7 +44,7 @@
public void Constructor_WithFailureMechanismSection_ExpectedValues()
{
// Setup
- ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection();
+ ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection();
// Call
var assemblyResult = new TestExportableAggregatedFailureMechanismSectionAssemblyResultBase(failureMechanismSection);
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultTest.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultTest.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -34,7 +34,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResult(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
@@ -50,7 +50,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResult(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
@@ -66,7 +66,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResult(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
null,
@@ -82,7 +82,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResult(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
@@ -97,7 +97,7 @@
public void Constructor_WithValidArguments_ExpectedValues()
{
// Setup
- ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection();
+ ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection();
ExportableSectionAssemblyResult simpleAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
ExportableSectionAssemblyResult detailedAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
ExportableSectionAssemblyResult tailorMadeAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbabilityTest.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbabilityTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbabilityTest.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbabilityTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbabilityTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -34,7 +34,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbability(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
@@ -50,7 +50,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbability(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
@@ -66,7 +66,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbability(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
null,
@@ -82,7 +82,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithProbability(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability(),
@@ -97,7 +97,7 @@
public void Constructor_WithValidArguments_ExpectedValues()
{
// Setup
- ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection();
+ ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection();
ExportableSectionAssemblyResultWithProbability simpleAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability();
ExportableSectionAssemblyResultWithProbability detailedAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability();
ExportableSectionAssemblyResultWithProbability tailorMadeAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResultWithProbability();
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssemblyTest.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssemblyTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssemblyTest.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssemblyTest.cs (.../ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssemblyTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -34,7 +34,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssembly(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult());
@@ -49,7 +49,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssembly(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
null,
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult());
@@ -64,7 +64,7 @@
{
// Call
TestDelegate call = () => new ExportableAggregatedFailureMechanismSectionAssemblyResultWithoutDetailedAssembly(
- ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection(),
+ ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult(),
null);
@@ -78,7 +78,7 @@
public void Constructor_WithValidArguments_ExpectedValues()
{
// Setup
- ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection();
+ ExportableFailureMechanismSection failureMechanismSection = ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection();
ExportableSectionAssemblyResult simpleAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
ExportableSectionAssemblyResult tailorMadeAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
ExportableSectionAssemblyResult combinedAssembly = ExportableSectionAssemblyResultTestFactory.CreateSectionAssemblyResult();
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Factories/ExportableAssessmentSectionFactoryTest.cs
===================================================================
diff -u -ra48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Factories/ExportableAssessmentSectionFactoryTest.cs (.../ExportableAssessmentSectionFactoryTest.cs) (revision a48bcdc9670ec7dc1da17ca73bb6fc1f287c39a1)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Factories/ExportableAssessmentSectionFactoryTest.cs (.../ExportableAssessmentSectionFactoryTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -195,12 +195,12 @@
private static void AssertExportableFailureMechanismWithProbability(FailureMechanismAssembly expectedAssemblyOutput,
ExportableFailureMechanismType expectedFailureMechanismCode,
- ExportableFailureMechanismGroup expecteFailureMechanismGroup,
+ ExportableFailureMechanismGroup expectedFailureMechanismGroup,
IHasSectionResults failureMechanism,
ExportableFailureMechanism actualExportableFailureMechanism)
{
Assert.AreEqual(expectedFailureMechanismCode, actualExportableFailureMechanism.Code);
- Assert.AreEqual(expecteFailureMechanismGroup, actualExportableFailureMechanism.Group);
+ Assert.AreEqual(expectedFailureMechanismGroup, actualExportableFailureMechanism.Group);
ExportableFailureMechanismAssemblyResultWithProbability exportableFailureMechanismAssemblyResult = actualExportableFailureMechanism.FailureMechanismAssembly;
Assert.AreEqual(expectedAssemblyOutput.Group, exportableFailureMechanismAssemblyResult.AssemblyCategory);
@@ -298,12 +298,12 @@
private static void AssertExportableFailureMechanismWithoutProbability(FailureMechanismAssemblyCategoryGroup expectedAssemblyOutput,
ExportableFailureMechanismType expectedFailureMechanismCode,
- ExportableFailureMechanismGroup expecteFailureMechanismGroup,
+ ExportableFailureMechanismGroup expectedFailureMechanismGroup,
IHasSectionResults failureMechanism,
ExportableFailureMechanism actualExportableFailureMechanism)
{
Assert.AreEqual(expectedFailureMechanismCode, actualExportableFailureMechanism.Code);
- Assert.AreEqual(expecteFailureMechanismGroup, actualExportableFailureMechanism.Group);
+ Assert.AreEqual(expectedFailureMechanismGroup, actualExportableFailureMechanism.Group);
ExportableFailureMechanismAssemblyResult exportableFailureMechanismAssemblyResult = actualExportableFailureMechanism.FailureMechanismAssembly;
Assert.AreEqual(expectedAssemblyOutput, exportableFailureMechanismAssemblyResult.AssemblyCategory);
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableFailureMechanismSectionTestFactoryTest.cs
===================================================================
diff -u -rb2c1971e9e3264afd7b55e68f0de2ca589e3f750 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableFailureMechanismSectionTestFactoryTest.cs (.../ExportableFailureMechanismSectionTestFactoryTest.cs) (revision b2c1971e9e3264afd7b55e68f0de2ca589e3f750)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableFailureMechanismSectionTestFactoryTest.cs (.../ExportableFailureMechanismSectionTestFactoryTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using Core.Common.Base.Geometry;
+// 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 Core.Common.Base.Geometry;
using NUnit.Framework;
using Ringtoets.Integration.IO.Assembly;
@@ -11,7 +32,7 @@
public void CreateFailureMechanismSection_Always_ReturnsFailureMechanismSection()
{
// Call
- ExportableFailureMechanismSection section = ExportableFailureMechanismSectionTestFactory.CreatExportableFailureMechanismSection();
+ ExportableFailureMechanismSection section = ExportableFailureMechanismSectionTestFactory.CreateExportableFailureMechanismSection();
// Assert
CollectionAssert.AreEqual(new[]
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableSectionAssemblyResultTestFactoryTest.cs
===================================================================
diff -u -rb2c1971e9e3264afd7b55e68f0de2ca589e3f750 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableSectionAssemblyResultTestFactoryTest.cs (.../ExportableSectionAssemblyResultTestFactoryTest.cs) (revision b2c1971e9e3264afd7b55e68f0de2ca589e3f750)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/ExportableSectionAssemblyResultTestFactoryTest.cs (.../ExportableSectionAssemblyResultTestFactoryTest.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using NUnit.Framework;
+// 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.Data;
using Ringtoets.Integration.IO.Assembly;
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/packages.config
===================================================================
diff -u -r4552827a99f65ac03bd340be8600b9a2b01b6363 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/packages.config (.../packages.config) (revision 4552827a99f65ac03bd340be8600b9a2b01b6363)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil.Test/packages.config (.../packages.config) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -20,7 +20,6 @@
Stichting Deltares and remain full property of Stichting Deltares at all times.
All rights reserved.
-->
-
\ No newline at end of file
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestFactory.cs
===================================================================
diff -u -rb2c1971e9e3264afd7b55e68f0de2ca589e3f750 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestFactory.cs (.../ExportableFailureMechanismSectionTestFactory.cs) (revision b2c1971e9e3264afd7b55e68f0de2ca589e3f750)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestFactory.cs (.../ExportableFailureMechanismSectionTestFactory.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using Core.Common.Base.Geometry;
+// 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 Core.Common.Base.Geometry;
using Ringtoets.Integration.IO.Assembly;
namespace Ringtoets.Integration.IO.TestUtil
@@ -13,7 +34,7 @@
/// Creates a default .
///
/// A default .
- public static ExportableFailureMechanismSection CreatExportableFailureMechanismSection()
+ public static ExportableFailureMechanismSection CreateExportableFailureMechanismSection()
{
return new ExportableFailureMechanismSection(new []
{
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestHelper.cs
===================================================================
diff -u -rb04868b391b8620e69b3fc2afe4f42f03abd65b3 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestHelper.cs (.../ExportableFailureMechanismSectionTestHelper.cs) (revision b04868b391b8620e69b3fc2afe4f42f03abd65b3)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableFailureMechanismSectionTestHelper.cs (.../ExportableFailureMechanismSectionTestHelper.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using System.Collections.Generic;
+// 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 System.Collections.Generic;
using System.Linq;
using Core.Common.Base.Geometry;
using NUnit.Framework;
@@ -16,7 +37,7 @@
/// Asserts a collection of
/// against a collection of .
///
- /// The expected .
+ /// The expected collection of .
/// The actual to assert against.
/// Thrown when:
///
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestFactory.cs
===================================================================
diff -u -rb2c1971e9e3264afd7b55e68f0de2ca589e3f750 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestFactory.cs (.../ExportableSectionAssemblyResultTestFactory.cs) (revision b2c1971e9e3264afd7b55e68f0de2ca589e3f750)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestFactory.cs (.../ExportableSectionAssemblyResultTestFactory.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using Ringtoets.AssemblyTool.Data;
+// 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 Ringtoets.AssemblyTool.Data;
using Ringtoets.Integration.IO.Assembly;
namespace Ringtoets.Integration.IO.TestUtil
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestHelper.cs
===================================================================
diff -u -r7b05c7fa960ab9f62cd9de2ae661a0f24ca0756a -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestHelper.cs (.../ExportableSectionAssemblyResultTestHelper.cs) (revision 7b05c7fa960ab9f62cd9de2ae661a0f24ca0756a)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/ExportableSectionAssemblyResultTestHelper.cs (.../ExportableSectionAssemblyResultTestHelper.cs) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,25 @@
-using NUnit.Framework;
+// 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.Data;
using Ringtoets.Integration.IO.Assembly;
Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/packages.config
===================================================================
diff -u -rf5292d182348de2ddb7760b7e3f27b0f9cfc9177 -rd4337f2d7004bced560528c19eb287023e9f3801
--- Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/packages.config (.../packages.config) (revision f5292d182348de2ddb7760b7e3f27b0f9cfc9177)
+++ Ringtoets/Integration/test/Ringtoets.Integration.IO.TestUtil/packages.config (.../packages.config) (revision d4337f2d7004bced560528c19eb287023e9f3801)
@@ -1,4 +1,26 @@
+
\ No newline at end of file