Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategory.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategory.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategory.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,50 @@ +// 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.Data +{ + /// + /// Assembly category base. + /// + public abstract class AssemblyCategory + { + /// + /// Creates a new instance of . + /// + /// The lower boundary of the category. + /// The upper boundary of the category. + protected AssemblyCategory(double lowerBoundary, double upperBoundary) + { + LowerBoundary = lowerBoundary; + UpperBoundary = upperBoundary; + } + + /// + /// Gets the lower boundary of the assembly category. + /// + public double LowerBoundary { get; } + + /// + /// Gets the upper boundary of the assembly category. + /// + public double UpperBoundary { get; } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategory.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategory.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategory.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,46 @@ +// 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.Data +{ + /// + /// Assembly category for assessment section. + /// + public class AssessmentSectionAssemblyCategory : AssemblyCategory + { + /// + /// Creates a new instance of . + /// + /// The lower boundary of the category. + /// The upper boundary of the category. + /// The group of the category. + public AssessmentSectionAssemblyCategory(double lowerBoundary, double upperBoundary, AssessmentSectionAssemblyCategoryGroup group) + : base(lowerBoundary, upperBoundary) + { + Group = group; + } + + /// + /// Gets the group of the assembly category. + /// + public AssessmentSectionAssemblyCategoryGroup Group { get; } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategoryGroup.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategoryGroup.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssessmentSectionAssemblyCategoryGroup.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,35 @@ +// 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.Data +{ + /// + /// Enum defining the assembly categories for an assessment section. + /// + public enum AssessmentSectionAssemblyCategoryGroup + { + APlus = 1, + A = 2, + B = 3, + C = 4, + D = 5 + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssembly.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssembly.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssembly.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,50 @@ +// 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.Data +{ + /// + /// Assembly for failure mechanism section. + /// + public class FailureMechanismSectionAssembly + { + /// + /// Creates a new instance of . + /// + /// The probability of the assembly. + /// The group of the assembly. + public FailureMechanismSectionAssembly(double probability, FailureMechanismSectionAssemblyCategoryGroup group) + { + Probability = probability; + Group = group; + } + + /// + /// Gets the probability of the assembly. + /// + public double Probability { get; } + + /// + /// Gets the group of the assembly. + /// + public FailureMechanismSectionAssemblyCategoryGroup Group { get; } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategory.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategory.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategory.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,46 @@ +// 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.Data +{ + /// + /// Assembly category for failure mechanism section. + /// + public class FailureMechanismSectionAssemblyCategory : AssemblyCategory + { + /// + /// Creates a new instance of . + /// + /// The lower boundary of the category. + /// The upper boundary of the category. + /// The group of the category. + public FailureMechanismSectionAssemblyCategory(double lowerBoundary, double upperBoundary, FailureMechanismSectionAssemblyCategoryGroup group) + : base(lowerBoundary, upperBoundary) + { + Group = group; + } + + /// + /// Gets the group of the assembly category. + /// + public FailureMechanismSectionAssemblyCategoryGroup Group { get; } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategoryGroup.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategoryGroup.cs (revision 0) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/FailureMechanismSectionAssemblyCategoryGroup.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,39 @@ +// 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.Data +{ + /// + /// Enum defining the assembly categories for a failure mechanism section. + /// + public enum FailureMechanismSectionAssemblyCategoryGroup + { + None = 1, + NotApplicable = 2, + Iv = 3, + IIv = 4, + IIIv = 5, + IVv = 6, + Vv = 7, + VIv = 8, + VIIv = 9 + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/Ringtoets.AssemblyTool.Data.csproj =================================================================== diff -u -r1e4726f7cd3374ca7c402320049f9df5bd4bdf43 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/Ringtoets.AssemblyTool.Data.csproj (.../Ringtoets.AssemblyTool.Data.csproj) (revision 1e4726f7cd3374ca7c402320049f9df5bd4bdf43) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/Ringtoets.AssemblyTool.Data.csproj (.../Ringtoets.AssemblyTool.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -11,6 +11,12 @@ + + + + + + Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/FailureMechanismSectionAssemblyCalculator.cs =================================================================== diff -u -r39e13825618c9845e2100ae802a007c04c2e8517 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/FailureMechanismSectionAssemblyCalculator.cs (.../FailureMechanismSectionAssemblyCalculator.cs) (revision 39e13825618c9845e2100ae802a007c04c2e8517) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/FailureMechanismSectionAssemblyCalculator.cs (.../FailureMechanismSectionAssemblyCalculator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,9 +22,9 @@ using System; using AssemblyTool.Kernel; using AssemblyTool.Kernel.Data.AssemblyCategories; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Creators; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.FailureMechanism; using IFailureMechanismSectionAssemblyCalculatorKernel = AssemblyTool.Kernel.Assembly.IFailureMechanismSectionAssemblyCalculator; Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/IFailureMechanismSectionAssemblyCalculator.cs =================================================================== diff -u -r39e13825618c9845e2100ae802a007c04c2e8517 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/IFailureMechanismSectionAssemblyCalculator.cs (.../IFailureMechanismSectionAssemblyCalculator.cs) (revision 39e13825618c9845e2100ae802a007c04c2e8517) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Assembly/IFailureMechanismSectionAssemblyCalculator.cs (.../IFailureMechanismSectionAssemblyCalculator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -19,7 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using Ringtoets.Common.Data.AssemblyTool; +using Ringtoets.AssemblyTool.Data; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs =================================================================== diff -u -rabfbe21cfe7c93b527a05a28768f34cd139e34d5 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs (.../AssemblyCategoriesCalculator.cs) (revision abfbe21cfe7c93b527a05a28768f34cd139e34d5) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/AssemblyCategoriesCalculator.cs (.../AssemblyCategoriesCalculator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -26,9 +26,9 @@ using AssemblyTool.Kernel.Categories.CalculatorInput; using AssemblyTool.Kernel.Data; using AssemblyTool.Kernel.Data.AssemblyCategories; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Creators; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories { Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs =================================================================== diff -u -r2628207e6940f66f4bdec0fe517ebc8d043797d1 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs (.../IAssemblyCategoriesCalculator.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Calculators/Categories/IAssemblyCategoriesCalculator.cs (.../IAssemblyCategoriesCalculator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -21,7 +21,7 @@ using System; using System.Collections.Generic; -using Ringtoets.Common.Data.AssemblyTool; +using Ringtoets.AssemblyTool.Data; namespace Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories { Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/AssemblyCategoryCreator.cs =================================================================== diff -u -r6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/AssemblyCategoryCreator.cs (.../AssemblyCategoryCreator.cs) (revision 6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/AssemblyCategoryCreator.cs (.../AssemblyCategoryCreator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -25,7 +25,7 @@ using System.Linq; using AssemblyTool.Kernel; using AssemblyTool.Kernel.Data.AssemblyCategories; -using Ringtoets.Common.Data.AssemblyTool; +using Ringtoets.AssemblyTool.Data; namespace Ringtoets.AssemblyTool.KernelWrapper.Creators { Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCreator.cs =================================================================== diff -u -r04413fc20bc8c87638dc1cddf0dafd0d6d75b0fa -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCreator.cs (.../FailureMechanismSectionAssemblyCreator.cs) (revision 04413fc20bc8c87638dc1cddf0dafd0d6d75b0fa) +++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCreator.cs (.../FailureMechanismSectionAssemblyCreator.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,7 +22,7 @@ using System; using System.ComponentModel; using AssemblyTool.Kernel.Data.AssemblyCategories; -using Ringtoets.Common.Data.AssemblyTool; +using Ringtoets.AssemblyTool.Data; namespace Ringtoets.AssemblyTool.KernelWrapper.Creators { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssemblyCategoryTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssemblyCategoryTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssemblyCategoryTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,52 @@ +// 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; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class AssemblyCategoryTest + { + [Test] + public void Constructor_ExpectedValues() + { + var random = new Random(11); + + double lowerBoundary = random.NextDouble(); + double upperBoundary = random.NextDouble(); + + // Call + var category = new SimpleCategory(lowerBoundary, upperBoundary); + + // Assert + Assert.AreEqual(lowerBoundary, category.LowerBoundary); + Assert.AreEqual(upperBoundary, category.UpperBoundary); + } + + private class SimpleCategory : AssemblyCategory + { + public SimpleCategory(double lowerBoundary, double upperBoundary) + : base(lowerBoundary, upperBoundary) {} + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryGroupTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryGroupTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryGroupTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,56 @@ +// 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 Core.Common.TestUtil; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class AssessmentSectionAssemblyCategoryGroupTest : EnumValuesTestFixture + { + protected override IDictionary ExpectedValueForEnumValues + { + get + { + return new Dictionary + { + { + AssessmentSectionAssemblyCategoryGroup.APlus, 1 + }, + { + AssessmentSectionAssemblyCategoryGroup.A, 2 + }, + { + AssessmentSectionAssemblyCategoryGroup.B, 3 + }, + { + AssessmentSectionAssemblyCategoryGroup.C, 4 + }, + { + AssessmentSectionAssemblyCategoryGroup.D, 5 + } + }; + } + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/AssessmentSectionAssemblyCategoryTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,50 @@ +// 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; +using Core.Common.TestUtil; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class AssessmentSectionAssemblyCategoryTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Setup + var random = new Random(39); + var categoryType = random.NextEnumValue(); + double lowerBoundary = random.NextDouble(); + double upperBoundary = random.NextDouble(); + + // Call + var category = new AssessmentSectionAssemblyCategory(lowerBoundary, upperBoundary, categoryType); + + // Assert + Assert.IsInstanceOf(category); + Assert.AreEqual(lowerBoundary, category.LowerBoundary); + Assert.AreEqual(upperBoundary, category.UpperBoundary); + Assert.AreEqual(categoryType, category.Group); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryGroupTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryGroupTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryGroupTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,68 @@ +// 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 Core.Common.TestUtil; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class FailureMechanismSectionAssemblyCategoryGroupTest : EnumValuesTestFixture + { + protected override IDictionary ExpectedValueForEnumValues + { + get + { + return new Dictionary + { + { + FailureMechanismSectionAssemblyCategoryGroup.None, 1 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.NotApplicable, 2 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.Iv, 3 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.IIv, 4 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.IIIv, 5 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.IVv, 6 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.Vv, 7 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.VIv, 8 + }, + { + FailureMechanismSectionAssemblyCategoryGroup.VIIv, 9 + } + }; + } + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyCategoryTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,50 @@ +// 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; +using Core.Common.TestUtil; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class FailureMechanismSectionAssemblyCategoryTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Setup + var random = new Random(39); + var categoryType = random.NextEnumValue(); + double lowerBoundary = random.NextDouble(); + double upperBoundary = random.NextDouble(); + + // Call + var category = new FailureMechanismSectionAssemblyCategory(lowerBoundary, upperBoundary, categoryType); + + // Assert + Assert.IsInstanceOf(category); + Assert.AreEqual(lowerBoundary, category.LowerBoundary); + Assert.AreEqual(upperBoundary, category.UpperBoundary); + Assert.AreEqual(categoryType, category.Group); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyTest.cs =================================================================== diff -u --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyTest.cs (revision 0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/FailureMechanismSectionAssemblyTest.cs (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -0,0 +1,47 @@ +// 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; +using Core.Common.TestUtil; +using NUnit.Framework; + +namespace Ringtoets.AssemblyTool.Data.Test +{ + [TestFixture] + public class FailureMechanismSectionAssemblyTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Setup + var random = new Random(39); + double probability = random.NextDouble(); + var group = random.NextEnumValue(); + + // Call + var assembly = new FailureMechanismSectionAssembly(probability, group); + + // Assert + Assert.AreEqual(probability, assembly.Probability); + Assert.AreEqual(group, assembly.Group); + } + } +} \ No newline at end of file Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/Ringtoets.AssemblyTool.Data.Test.csproj =================================================================== diff -u -r1e4726f7cd3374ca7c402320049f9df5bd4bdf43 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/Ringtoets.AssemblyTool.Data.Test.csproj (.../Ringtoets.AssemblyTool.Data.Test.csproj) (revision 1e4726f7cd3374ca7c402320049f9df5bd4bdf43) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.Data.Test/Ringtoets.AssemblyTool.Data.Test.csproj (.../Ringtoets.AssemblyTool.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -14,6 +14,12 @@ + + + + + + Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorTest.cs =================================================================== diff -u -r39e13825618c9845e2100ae802a007c04c2e8517 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorTest.cs (.../FailureMechanismSectionAssemblyCalculatorTest.cs) (revision 39e13825618c9845e2100ae802a007c04c2e8517) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorTest.cs (.../FailureMechanismSectionAssemblyCalculatorTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -27,11 +27,11 @@ using AssemblyTool.Kernel.Data.CalculationResults; using NUnit.Framework; using Rhino.Mocks; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Kernels; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Kernels.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Calculators.Assembly Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Categories/AssemblyCategoriesCalculatorTest.cs =================================================================== diff -u -rabfbe21cfe7c93b527a05a28768f34cd139e34d5 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Categories/AssemblyCategoriesCalculatorTest.cs (.../AssemblyCategoriesCalculatorTest.cs) (revision abfbe21cfe7c93b527a05a28768f34cd139e34d5) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Calculators/Categories/AssemblyCategoriesCalculatorTest.cs (.../AssemblyCategoriesCalculatorTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -27,12 +27,12 @@ using Core.Common.TestUtil; using NUnit.Framework; using Rhino.Mocks; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Kernels; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Kernels.Categories; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Calculators.Categories { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/AssemblyCategoryCreatorTest.cs =================================================================== diff -u -r6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/AssemblyCategoryCreatorTest.cs (.../AssemblyCategoryCreatorTest.cs) (revision 6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/AssemblyCategoryCreatorTest.cs (.../AssemblyCategoryCreatorTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -28,9 +28,9 @@ using AssemblyTool.Kernel.Data.AssemblyCategories; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Creators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Creators { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/FailureMechanismSectionAssemblyCreatorTest.cs =================================================================== diff -u -r04413fc20bc8c87638dc1cddf0dafd0d6d75b0fa -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/FailureMechanismSectionAssemblyCreatorTest.cs (.../FailureMechanismSectionAssemblyCreatorTest.cs) (revision 04413fc20bc8c87638dc1cddf0dafd0d6d75b0fa) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.Test/Creators/FailureMechanismSectionAssemblyCreatorTest.cs (.../FailureMechanismSectionAssemblyCreatorTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -25,8 +25,8 @@ using AssemblyTool.Kernel.Data.AssemblyCategories; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Creators; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.Test.Creators { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStubTest.cs =================================================================== diff -u -r6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStubTest.cs (.../FailureMechanismSectionAssemblyCalculatorStubTest.cs) (revision 6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStubTest.cs (.../FailureMechanismSectionAssemblyCalculatorStubTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,9 +20,9 @@ // All rights reserved. using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test.Calculators.Assembly Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs =================================================================== diff -u -r2628207e6940f66f4bdec0fe517ebc8d043797d1 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs (.../AssemblyCategoriesCalculatorStubTest.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test/Calculators/Categories/AssemblyCategoriesCalculatorStubTest.cs (.../AssemblyCategoriesCalculatorStubTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -23,9 +23,9 @@ using System.Collections.Generic; using System.Linq; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Categories; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Test.Calculators.Categories { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/AssemblyCategoryAssert.cs =================================================================== diff -u -r0c8ff298db78d2860268b9d951ed8e4a1b7d78d0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/AssemblyCategoryAssert.cs (.../AssemblyCategoryAssert.cs) (revision 0c8ff298db78d2860268b9d951ed8e4a1b7d78d0) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/AssemblyCategoryAssert.cs (.../AssemblyCategoryAssert.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -25,7 +25,7 @@ using AssemblyTool.Kernel; using AssemblyTool.Kernel.Data.AssemblyCategories; using NUnit.Framework; -using Ringtoets.Common.Data.AssemblyTool; +using Ringtoets.AssemblyTool.Data; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil { Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStub.cs =================================================================== diff -u -r6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStub.cs (.../FailureMechanismSectionAssemblyCalculatorStub.cs) (revision 6a9cb2d6ff7ad95ad9cdff2d2fdc998067e36cc3) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Assembly/FailureMechanismSectionAssemblyCalculatorStub.cs (.../FailureMechanismSectionAssemblyCalculatorStub.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,8 +20,8 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs =================================================================== diff -u -r2628207e6940f66f4bdec0fe517ebc8d043797d1 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs (.../AssemblyCategoriesCalculatorStub.cs) (revision 2628207e6940f66f4bdec0fe517ebc8d043797d1) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Calculators/Categories/AssemblyCategoriesCalculatorStub.cs (.../AssemblyCategoriesCalculatorStub.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -21,8 +21,8 @@ using System; using System.Collections.Generic; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories; -using Ringtoets.Common.Data.AssemblyTool; namespace Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Categories { Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -rd9d23d802045988cc402f0c3159ee23903cc784e -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../ClosingStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision d9d23d802045988cc402f0c3159ee23903cc784e) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../ClosingStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.ClosingStructures.Data Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/Ringtoets.ClosingStructures.Data.csproj =================================================================== diff -u -rd9d23d802045988cc402f0c3159ee23903cc784e -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/Ringtoets.ClosingStructures.Data.csproj (.../Ringtoets.ClosingStructures.Data.csproj) (revision d9d23d802045988cc402f0c3159ee23903cc784e) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/Ringtoets.ClosingStructures.Data.csproj (.../Ringtoets.ClosingStructures.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -43,6 +43,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -rd9d23d802045988cc402f0c3159ee23903cc784e -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../ClosingStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision d9d23d802045988cc402f0c3159ee23903cc784e) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../ClosingStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/Ringtoets.ClosingStructures.Data.Test.csproj =================================================================== diff -u -rd9d23d802045988cc402f0c3159ee23903cc784e -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/Ringtoets.ClosingStructures.Data.Test.csproj (.../Ringtoets.ClosingStructures.Data.Test.csproj) (revision d9d23d802045988cc402f0c3159ee23903cc784e) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/Ringtoets.ClosingStructures.Data.Test.csproj (.../Ringtoets.ClosingStructures.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -49,6 +49,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/AssemblyCategory.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/AssessmentSectionAssemblyCategory.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/AssessmentSectionAssemblyCategoryGroup.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/FailureMechanismSectionAssembly.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/FailureMechanismSectionAssemblyCategory.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/src/Ringtoets.Common.Data/AssemblyTool/FailureMechanismSectionAssemblyCategoryGroup.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Common/src/Ringtoets.Common.Data/Ringtoets.Common.Data.csproj =================================================================== diff -u -rc7d4fe5929b8597bbdebfb231f9bcb7be046bb13 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Common/src/Ringtoets.Common.Data/Ringtoets.Common.Data.csproj (.../Ringtoets.Common.Data.csproj) (revision c7d4fe5929b8597bbdebfb231f9bcb7be046bb13) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Ringtoets.Common.Data.csproj (.../Ringtoets.Common.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -16,12 +16,6 @@ - - - - - - Index: Ringtoets/Common/src/Ringtoets.Common.Service/AssemblyTool/AssemblyToolCategoriesCalculationService.cs =================================================================== diff -u -rc2f9826c0e84aaabc801d9b15bf2b532663df7ae -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Common/src/Ringtoets.Common.Service/AssemblyTool/AssemblyToolCategoriesCalculationService.cs (.../AssemblyToolCategoriesCalculationService.cs) (revision c2f9826c0e84aaabc801d9b15bf2b532663df7ae) +++ Ringtoets/Common/src/Ringtoets.Common.Service/AssemblyTool/AssemblyToolCategoriesCalculationService.cs (.../AssemblyToolCategoriesCalculationService.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System.Collections.Generic; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Service.Properties; namespace Ringtoets.Common.Service.AssemblyTool Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/AssemblyCategoryTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/AssessmentSectionAssemblyCategoryGroupTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/AssessmentSectionAssemblyCategoryTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/FailureMechanismSectionAssemblyCategoryGroupTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/FailureMechanismSectionAssemblyCategoryTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag b46cba3269d292e5ca3374ec0f75810686cf3ec6 refers to a dead (removed) revision in file `Ringtoets/Common/test/Ringtoets.Common.Data.Test/AssemblyTool/FailureMechanismSectionAssemblyTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Ringtoets.Common.Data.Test.csproj =================================================================== diff -u -rc7d4fe5929b8597bbdebfb231f9bcb7be046bb13 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Ringtoets.Common.Data.Test.csproj (.../Ringtoets.Common.Data.Test.csproj) (revision c7d4fe5929b8597bbdebfb231f9bcb7be046bb13) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Ringtoets.Common.Data.Test.csproj (.../Ringtoets.Common.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,12 +20,6 @@ - - - - - - Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/AssemblyTool/AssemblyToolCategoriesCalculationServiceTest.cs =================================================================== diff -u -rf440769c26234dd8ccfeb987d039926a7ce532c7 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/AssemblyTool/AssemblyToolCategoriesCalculationServiceTest.cs (.../AssemblyToolCategoriesCalculationServiceTest.cs) (revision f440769c26234dd8ccfeb987d039926a7ce532c7) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/AssemblyTool/AssemblyToolCategoriesCalculationServiceTest.cs (.../AssemblyToolCategoriesCalculationServiceTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -25,11 +25,11 @@ using Core.Common.TestUtil; using log4net.Core; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Categories; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Categories; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Service.AssemblyTool; namespace Ringtoets.Common.Service.Test.AssemblyTool Index: Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/DuneErosionFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r72734a3bee237874197b37fe2bd23f1ad51e6a69 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/DuneErosionFailureMechanismSectionResultAssemblyFactory.cs (.../DuneErosionFailureMechanismSectionResultAssemblyFactory.cs) (revision 72734a3bee237874197b37fe2bd23f1ad51e6a69) +++ Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/DuneErosionFailureMechanismSectionResultAssemblyFactory.cs (.../DuneErosionFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.DuneErosion.Data Index: Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/Ringtoets.DuneErosion.Data.csproj =================================================================== diff -u -r72734a3bee237874197b37fe2bd23f1ad51e6a69 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/Ringtoets.DuneErosion.Data.csproj (.../Ringtoets.DuneErosion.Data.csproj) (revision 72734a3bee237874197b37fe2bd23f1ad51e6a69) +++ Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Data/Ringtoets.DuneErosion.Data.csproj (.../Ringtoets.DuneErosion.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -37,6 +37,11 @@ Core.Common.Base False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/DuneErosionFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r9e2b9b542b21fb1b37a68ee03c87d647384a72ad -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/DuneErosionFailureMechanismSectionResultAssemblyFactoryTest.cs (.../DuneErosionFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 9e2b9b542b21fb1b37a68ee03c87d647384a72ad) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/DuneErosionFailureMechanismSectionResultAssemblyFactoryTest.cs (.../DuneErosionFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/Ringtoets.DuneErosion.Data.Test.csproj =================================================================== diff -u -r72734a3bee237874197b37fe2bd23f1ad51e6a69 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/Ringtoets.DuneErosion.Data.Test.csproj (.../Ringtoets.DuneErosion.Data.Test.csproj) (revision 72734a3bee237874197b37fe2bd23f1ad51e6a69) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.Test/Ringtoets.DuneErosion.Data.Test.csproj (.../Ringtoets.DuneErosion.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -40,6 +40,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r0ea8ce11449d4befadb2b80492479e6f74f9fae8 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision 0ea8ce11449d4befadb2b80492479e6f74f9fae8) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.GrassCoverErosionInwards.Data Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/Ringtoets.GrassCoverErosionInwards.Data.csproj =================================================================== diff -u -r0ea8ce11449d4befadb2b80492479e6f74f9fae8 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/Ringtoets.GrassCoverErosionInwards.Data.csproj (.../Ringtoets.GrassCoverErosionInwards.Data.csproj) (revision 0ea8ce11449d4befadb2b80492479e6f74f9fae8) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/Ringtoets.GrassCoverErosionInwards.Data.csproj (.../Ringtoets.GrassCoverErosionInwards.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -49,6 +49,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r9e2b9b542b21fb1b37a68ee03c87d647384a72ad -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 9e2b9b542b21fb1b37a68ee03c87d647384a72ad) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverErosionInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/Ringtoets.GrassCoverErosionInwards.Data.Test.csproj =================================================================== diff -u -r0ea8ce11449d4befadb2b80492479e6f74f9fae8 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/Ringtoets.GrassCoverErosionInwards.Data.Test.csproj (.../Ringtoets.GrassCoverErosionInwards.Data.Test.csproj) (revision 0ea8ce11449d4befadb2b80492479e6f74f9fae8) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/Ringtoets.GrassCoverErosionInwards.Data.Test.csproj (.../Ringtoets.GrassCoverErosionInwards.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -55,6 +55,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanismSectionAssemblyFactory.cs =================================================================== diff -u -r893ae543428122bb3679f721754f6a7078c74a06 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanismSectionAssemblyFactory.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionAssemblyFactory.cs) (revision 893ae543428122bb3679f721754f6a7078c74a06) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/GrassCoverErosionOutwardsFailureMechanismSectionAssemblyFactory.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.GrassCoverErosionOutwards.Data Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/Ringtoets.GrassCoverErosionOutwards.Data.csproj =================================================================== diff -u -r893ae543428122bb3679f721754f6a7078c74a06 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/Ringtoets.GrassCoverErosionOutwards.Data.csproj (.../Ringtoets.GrassCoverErosionOutwards.Data.csproj) (revision 893ae543428122bb3679f721754f6a7078c74a06) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Data/Ringtoets.GrassCoverErosionOutwards.Data.csproj (.../Ringtoets.GrassCoverErosionOutwards.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -41,6 +41,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/GrassCoverErosionOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/GrassCoverErosionOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/GrassCoverErosionOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/Ringtoets.GrassCoverErosionOutwards.Data.Test.csproj =================================================================== diff -u -r893ae543428122bb3679f721754f6a7078c74a06 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/Ringtoets.GrassCoverErosionOutwards.Data.Test.csproj (.../Ringtoets.GrassCoverErosionOutwards.Data.Test.csproj) (revision 893ae543428122bb3679f721754f6a7078c74a06) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Data.Test/Ringtoets.GrassCoverErosionOutwards.Data.Test.csproj (.../Ringtoets.GrassCoverErosionOutwards.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -47,6 +47,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r5190463f10ab340eca7d5eae8596cddd61d320e6 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../HeightStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision 5190463f10ab340eca7d5eae8596cddd61d320e6) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../HeightStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.HeightStructures.Data Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/Ringtoets.HeightStructures.Data.csproj =================================================================== diff -u -r5190463f10ab340eca7d5eae8596cddd61d320e6 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/Ringtoets.HeightStructures.Data.csproj (.../Ringtoets.HeightStructures.Data.csproj) (revision 5190463f10ab340eca7d5eae8596cddd61d320e6) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/Ringtoets.HeightStructures.Data.csproj (.../Ringtoets.HeightStructures.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -32,6 +32,11 @@ Core.Common.Base False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r5190463f10ab340eca7d5eae8596cddd61d320e6 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../HeightStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 5190463f10ab340eca7d5eae8596cddd61d320e6) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../HeightStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/Ringtoets.HeightStructures.Data.Test.csproj =================================================================== diff -u -r5190463f10ab340eca7d5eae8596cddd61d320e6 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/Ringtoets.HeightStructures.Data.Test.csproj (.../Ringtoets.HeightStructures.Data.Test.csproj) (revision 5190463f10ab340eca7d5eae8596cddd61d320e6) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/Ringtoets.HeightStructures.Data.Test.csproj (.../Ringtoets.HeightStructures.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -48,6 +48,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj =================================================================== diff -u -r725c301efa71aca86ae552e1dae51dea67262113 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj (.../Ringtoets.Integration.Data.csproj) (revision 725c301efa71aca86ae552e1dae51dea67262113) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj (.../Ringtoets.Integration.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -52,6 +52,11 @@ Core.Common.Base False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r61665ae42b8bbe4420848e7f55c1da149da66fc8 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision 61665ae42b8bbe4420848e7f55c1da149da66fc8) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -rbf11aca2d6743dbafdac089ceec8cc225095ee20 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision bf11aca2d6743dbafdac089ceec8cc225095ee20) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactory.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r36ffb8edb680c9868f18bc8ccf5a45df074c5b61 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactory.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision 36ffb8edb680c9868f18bc8ccf5a45df074c5b61) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactory.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r9e2b9b542b21fb1b37a68ee03c87d647384a72ad -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactory.cs (.../MicrostabilityFailureMechanismSectionResultAssemblyFactory.cs) (revision 9e2b9b542b21fb1b37a68ee03c87d647384a72ad) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactory.cs (.../MicrostabilityFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r861bdfe47ab5b11fac59a4a0ec494bb21af6a5c0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactory.cs (.../PipingStructureFailureMechanismSectionResultAssemblyFactory.cs) (revision 861bdfe47ab5b11fac59a4a0ec494bb21af6a5c0) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactory.cs (.../PipingStructureFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r4d46737b997caa1e5b09d6b26d6eac3626e89e77 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactory.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactory.cs) (revision 4d46737b997caa1e5b09d6b26d6eac3626e89e77) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactory.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r63e2c5282655255b39ae57323d2ff1a5d247686d -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactory.cs (.../TechnicalInnovationFailureMechanismSectionResultAssemblyFactory.cs) (revision 63e2c5282655255b39ae57323d2ff1a5d247686d) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactory.cs (.../TechnicalInnovationFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r8328f2553d24b72d984943acd6ee8c8fe6f12b07 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs) (revision 8328f2553d24b72d984943acd6ee8c8fe6f12b07) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj =================================================================== diff -u -r8328f2553d24b72d984943acd6ee8c8fe6f12b07 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj (.../Ringtoets.Integration.Data.Test.csproj) (revision 8328f2553d24b72d984943acd6ee8c8fe6f12b07) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj (.../Ringtoets.Integration.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -57,6 +57,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverSlipOffInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../GrassCoverSlipOffOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MicrostabilityFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/MicrostabilityFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MicrostabilityFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactoryTest.cs (.../PipingStructureFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/PipingStructureFailureMechanismSectionResultAssemblyFactoryTest.cs (.../PipingStructureFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StrengthStabilityLengthwiseConstructionFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactoryTest.cs (.../TechnicalInnovationFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/TechnicalInnovationFailureMechanismSectionResultAssemblyFactoryTest.cs (.../TechnicalInnovationFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/StandAlone/AssemblyFactories/WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../WaterPressureAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsFailureMechanismSectionResultsAssemblyFactory.cs =================================================================== diff -u -r9e2b9b542b21fb1b37a68ee03c87d647384a72ad -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsFailureMechanismSectionResultsAssemblyFactory.cs (.../MacroStabilityInwardsFailureMechanismSectionResultsAssemblyFactory.cs) (revision 9e2b9b542b21fb1b37a68ee03c87d647384a72ad) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsFailureMechanismSectionResultsAssemblyFactory.cs (.../MacroStabilityInwardsFailureMechanismSectionResultsAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.MacroStabilityInwards.Data Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/Ringtoets.MacroStabilityInwards.Data.csproj =================================================================== diff -u -rce1c65c74f261ff4ec99aff070966149488cd5d1 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/Ringtoets.MacroStabilityInwards.Data.csproj (.../Ringtoets.MacroStabilityInwards.Data.csproj) (revision ce1c65c74f261ff4ec99aff070966149488cd5d1) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/Ringtoets.MacroStabilityInwards.Data.csproj (.../Ringtoets.MacroStabilityInwards.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -72,6 +72,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/MacroStabilityInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/Ringtoets.MacroStabilityInwards.Data.Test.csproj =================================================================== diff -u -rce1c65c74f261ff4ec99aff070966149488cd5d1 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/Ringtoets.MacroStabilityInwards.Data.Test.csproj (.../Ringtoets.MacroStabilityInwards.Data.Test.csproj) (revision ce1c65c74f261ff4ec99aff070966149488cd5d1) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/Ringtoets.MacroStabilityInwards.Data.Test.csproj (.../Ringtoets.MacroStabilityInwards.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -76,6 +76,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r9a511d8b3e8d04cc8543be3bd3c130f86779a20d -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResultAssemblyFactory.cs (.../PipingFailureMechanismSectionResultAssemblyFactory.cs) (revision 9a511d8b3e8d04cc8543be3bd3c130f86779a20d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingFailureMechanismSectionResultAssemblyFactory.cs (.../PipingFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.Piping.Data Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/Ringtoets.Piping.Data.csproj =================================================================== diff -u -r9a511d8b3e8d04cc8543be3bd3c130f86779a20d -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/Ringtoets.Piping.Data.csproj (.../Ringtoets.Piping.Data.csproj) (revision 9a511d8b3e8d04cc8543be3bd3c130f86779a20d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/Ringtoets.Piping.Data.csproj (.../Ringtoets.Piping.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -51,6 +51,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultAssemblyFactoryTest.cs (.../PipingFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingFailureMechanismSectionResultAssemblyFactoryTest.cs (.../PipingFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/Ringtoets.Piping.Data.Test.csproj =================================================================== diff -u -r9a511d8b3e8d04cc8543be3bd3c130f86779a20d -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/Ringtoets.Piping.Data.Test.csproj (.../Ringtoets.Piping.Data.Test.csproj) (revision 9a511d8b3e8d04cc8543be3bd3c130f86779a20d) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/Ringtoets.Piping.Data.Test.csproj (.../Ringtoets.Piping.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -57,6 +57,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/Ringtoets.StabilityPointStructures.Data.csproj =================================================================== diff -u -r4bb4f73d53429f4a21027af725f5221f5f0d38a0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/Ringtoets.StabilityPointStructures.Data.csproj (.../Ringtoets.StabilityPointStructures.Data.csproj) (revision 4bb4f73d53429f4a21027af725f5221f5f0d38a0) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/Ringtoets.StabilityPointStructures.Data.csproj (.../Ringtoets.StabilityPointStructures.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -44,6 +44,11 @@ Core.Common.Util False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r4bb4f73d53429f4a21027af725f5221f5f0d38a0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision 4bb4f73d53429f4a21027af725f5221f5f0d38a0) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.StabilityPointStructures.Data Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/Ringtoets.StabilityPointStructures.Data.Test.csproj =================================================================== diff -u -r4bb4f73d53429f4a21027af725f5221f5f0d38a0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/Ringtoets.StabilityPointStructures.Data.Test.csproj (.../Ringtoets.StabilityPointStructures.Data.Test.csproj) (revision 4bb4f73d53429f4a21027af725f5221f5f0d38a0) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/Ringtoets.StabilityPointStructures.Data.Test.csproj (.../Ringtoets.StabilityPointStructures.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -48,6 +48,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r4bb4f73d53429f4a21027af725f5221f5f0d38a0 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 4bb4f73d53429f4a21027af725f5221f5f0d38a0) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/Ringtoets.StabilityStoneCover.Data.csproj =================================================================== diff -u -r302020d286e7e5af3f769fb52bb73723e5afa804 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/Ringtoets.StabilityStoneCover.Data.csproj (.../Ringtoets.StabilityStoneCover.Data.csproj) (revision 302020d286e7e5af3f769fb52bb73723e5afa804) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/Ringtoets.StabilityStoneCover.Data.csproj (.../Ringtoets.StabilityStoneCover.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -35,6 +35,11 @@ Core.Common.Base False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanismSectionAssemblyFactory.cs =================================================================== diff -u -r302020d286e7e5af3f769fb52bb73723e5afa804 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanismSectionAssemblyFactory.cs (.../StabilityStoneCoverFailureMechanismSectionAssemblyFactory.cs) (revision 302020d286e7e5af3f769fb52bb73723e5afa804) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanismSectionAssemblyFactory.cs (.../StabilityStoneCoverFailureMechanismSectionAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.StabilityStoneCover.Data Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/Ringtoets.StabilityStoneCover.Data.Test.csproj =================================================================== diff -u -r302020d286e7e5af3f769fb52bb73723e5afa804 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/Ringtoets.StabilityStoneCover.Data.Test.csproj (.../Ringtoets.StabilityStoneCover.Data.Test.csproj) (revision 302020d286e7e5af3f769fb52bb73723e5afa804) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/Ringtoets.StabilityStoneCover.Data.Test.csproj (.../Ringtoets.StabilityStoneCover.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -47,6 +47,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/Ringtoets.WaveImpactAsphaltCover.Data.csproj =================================================================== diff -u -rd1cdb592c40f4592211f8ff67e2b0cbcd1919d77 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/Ringtoets.WaveImpactAsphaltCover.Data.csproj (.../Ringtoets.WaveImpactAsphaltCover.Data.csproj) (revision d1cdb592c40f4592211f8ff67e2b0cbcd1919d77) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/Ringtoets.WaveImpactAsphaltCover.Data.csproj (.../Ringtoets.WaveImpactAsphaltCover.Data.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -42,6 +42,11 @@ Core.Common.Base False + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + False + {358b6da2-a1df-477f-b6ac-c30204265cb0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -rd1cdb592c40f4592211f8ff67e2b0cbcd1919d77 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs) (revision d1cdb592c40f4592211f8ff67e2b0cbcd1919d77) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactory.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -20,10 +20,10 @@ // All rights reserved. using System; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.Kernels; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; namespace Ringtoets.WaveImpactAsphaltCover.Data Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/Ringtoets.WaveImpactAsphaltCover.Data.Test.csproj =================================================================== diff -u -rd1cdb592c40f4592211f8ff67e2b0cbcd1919d77 -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/Ringtoets.WaveImpactAsphaltCover.Data.Test.csproj (.../Ringtoets.WaveImpactAsphaltCover.Data.Test.csproj) (revision d1cdb592c40f4592211f8ff67e2b0cbcd1919d77) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/Ringtoets.WaveImpactAsphaltCover.Data.Test.csproj (.../Ringtoets.WaveImpactAsphaltCover.Data.Test.csproj) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -47,6 +47,10 @@ {D749EE4C-CE50-4C17-BF01-9A953028C126} Core.Common.TestUtil + + {420ED9C3-0C33-47EA-B893-121A9C0DB4F1} + Ringtoets.AssemblyTool.Data + {358B6DA2-A1DF-477F-B6AC-C30204265CB0} Ringtoets.AssemblyTool.KernelWrapper Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -r647e0a98902cced35215336c113a3551b17fecaf -rb46cba3269d292e5ca3374ec0f75810686cf3ec6 --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision 647e0a98902cced35215336c113a3551b17fecaf) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Data.Test/WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision b46cba3269d292e5ca3374ec0f75810686cf3ec6) @@ -22,11 +22,11 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.AssemblyTool.KernelWrapper.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.Calculators.Assembly; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators; using Ringtoets.AssemblyTool.KernelWrapper.TestUtil.Calculators.Assembly; -using Ringtoets.Common.Data.AssemblyTool; using Ringtoets.Common.Data.Exceptions; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil;