Fisheye: Tag b286d241c3bfefe14166cc01382e806c98b54b5a refers to a dead (removed) revision in file `Core/Common/test/Core.Common.Data.TestUtil.Test/CloneAssertTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Core/Common/test/Core.Common.Data.TestUtil.Test/Core.Common.Data.TestUtil.Test.csproj
===================================================================
diff -u -r7b7bd75dc1c1327386c9be96b5d480565bb8ecd6 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Core/Common/test/Core.Common.Data.TestUtil.Test/Core.Common.Data.TestUtil.Test.csproj (.../Core.Common.Data.TestUtil.Test.csproj) (revision 7b7bd75dc1c1327386c9be96b5d480565bb8ecd6)
+++ Core/Common/test/Core.Common.Data.TestUtil.Test/Core.Common.Data.TestUtil.Test.csproj (.../Core.Common.Data.TestUtil.Test.csproj) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -49,7 +49,7 @@
Properties\GlobalAssembly.cs
-
+
Index: Core/Common/test/Core.Common.Data.TestUtil.Test/CoreCloneAssertTest.cs
===================================================================
diff -u
--- Core/Common/test/Core.Common.Data.TestUtil.Test/CoreCloneAssertTest.cs (revision 0)
+++ Core/Common/test/Core.Common.Data.TestUtil.Test/CoreCloneAssertTest.cs (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -0,0 +1,213 @@
+// 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 Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using NUnit.Framework;
+
+namespace Core.Common.Data.TestUtil.Test
+{
+ [TestFixture]
+ public class CoreCloneAssertTest
+ {
+ [Test]
+ public void AreObjectClones_TypeSpecificAssertsNull_ThrowsArgumentNullException()
+ {
+ // Call
+ TestDelegate test = () => CoreCloneAssert.AreObjectClones(new object(), new object(), null);
+
+ // Assert
+ Assert.Throws(test);
+ }
+
+ [Test]
+ public void AreObjectClones_OriginalAndCloneBothNull_DoesNotThrow()
+ {
+ // Call
+ TestDelegate test = () => CoreCloneAssert.AreObjectClones
Index: Core/Common/test/Core.Common.Data.TestUtil/CoreCloneAssert.cs
===================================================================
diff -u
--- Core/Common/test/Core.Common.Data.TestUtil/CoreCloneAssert.cs (revision 0)
+++ Core/Common/test/Core.Common.Data.TestUtil/CoreCloneAssert.cs (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -0,0 +1,117 @@
+// 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 Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using NUnit.Framework;
+
+namespace Core.Common.Data.TestUtil
+{
+ ///
+ /// Class for asserting whether two objects are clones.
+ ///
+ public static class CoreCloneAssert
+ {
+ ///
+ /// Method that asserts whether and
+ /// are clones. Some general clone assertions are performed, followed by the type specific
+ /// assertions (provided via ).
+ ///
+ /// The type of the objects to assert.
+ /// The original object.
+ /// The cloned object.
+ /// The action for performing the
+ /// specific assertions.
+ /// Thrown when
+ /// is null.
+ /// Thrown when and
+ /// are not clones.
+ public static void AreObjectClones(T original, object clone, Action typeSpecificAsserts)
+ {
+ if (typeSpecificAsserts == null)
+ {
+ throw new ArgumentNullException(nameof(typeSpecificAsserts));
+ }
+
+ if (original == null && clone == null)
+ {
+ return;
+ }
+
+ Assert.IsNotNull(original);
+ Assert.IsInstanceOf(clone);
+ Assert.AreNotSame(original, clone);
+
+ typeSpecificAsserts(original, (T) clone);
+ }
+
+ ///
+ /// Method that asserts whether and
+ /// are clones. Some general clone assertions are performed, followed by the type specific
+ /// assertions on a per element basis (provided via ).
+ ///
+ /// The type of the objects in the enumerations to assert.
+ /// The original enumeration.
+ /// The cloned enumeration.
+ /// The action for performing the
+ /// specific assertions on a per element basis.
+ /// Thrown when
+ /// is null.
+ /// Thrown when and
+ /// are not clones.
+ public static void AreEnumerationClones(IEnumerable original, object clone, Action typeSpecificAsserts)
+ {
+ if (typeSpecificAsserts == null)
+ {
+ throw new ArgumentNullException(nameof(typeSpecificAsserts));
+ }
+
+ if (original == null && clone == null)
+ {
+ return;
+ }
+
+ Assert.IsNotNull(original);
+ Assert.IsInstanceOf>(clone);
+ Assert.AreNotSame(original, clone);
+
+ CollectionAssert.AreEqual(original, (IEnumerable) clone, new AreClonesComparer(typeSpecificAsserts));
+ }
+
+ private class AreClonesComparer : IComparer
+ {
+ private readonly Action typeSpecificAsserts;
+
+ public AreClonesComparer(Action typeSpecificAsserts)
+ {
+ this.typeSpecificAsserts = typeSpecificAsserts;
+ }
+
+ public int Compare(object x, object y)
+ {
+ AreObjectClones((T) x, y, typeSpecificAsserts);
+
+ return 0;
+ }
+ }
+ }
+}
\ No newline at end of file
Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs
===================================================================
diff -u -rca6ec12fb540f0a56a12e363dc1eb3cff066d6cd -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs (.../ClosingStructuresInputTest.cs) (revision ca6ec12fb540f0a56a12e363dc1eb3cff066d6cd)
+++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs (.../ClosingStructuresInputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,13 +22,13 @@
using System;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.ClosingStructures.Data.TestUtil;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using ClosingStructuresCloneAssert = Ringtoets.ClosingStructures.Data.TestUtil.CloneAssert;
namespace Ringtoets.ClosingStructures.Data.Test
Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -rca6ec12fb540f0a56a12e363dc1eb3cff066d6cd -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision ca6ec12fb540f0a56a12e363dc1eb3cff066d6cd)
+++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,9 +19,9 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.ClosingStructures.Data.TestUtil
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/CommentTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/CommentTest.cs (.../CommentTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/CommentTest.cs (.../CommentTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,8 +20,8 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/DikeProfiles/BreakWaterTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/DikeProfiles/BreakWaterTest.cs (.../BreakWaterTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/DikeProfiles/BreakWaterTest.cs (.../BreakWaterTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,10 +21,10 @@
using System;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.DikeProfiles;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.DikeProfiles
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/FaultTreeIllustrationPointTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/FaultTreeIllustrationPointTest.cs (.../FaultTreeIllustrationPointTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/FaultTreeIllustrationPointTest.cs (.../FaultTreeIllustrationPointTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/GeneralResultTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,10 +22,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointBaseTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointBaseTest.cs (.../IllustrationPointBaseTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointBaseTest.cs (.../IllustrationPointBaseTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointNodeTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointNodeTest.cs (.../IllustrationPointNodeTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointNodeTest.cs (.../IllustrationPointNodeTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastTest.cs (.../StochastTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/StochastTest.cs (.../StochastTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs (.../SubMechanismIllustrationPointTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs (.../SubMechanismIllustrationPointTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,10 +22,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelFaultTreeIllustrationPointTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelFaultTreeIllustrationPointTest.cs (.../TopLevelFaultTreeIllustrationPointTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelFaultTreeIllustrationPointTest.cs (.../TopLevelFaultTreeIllustrationPointTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -1,8 +1,8 @@
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelIllustrationPointBaseTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelIllustrationPointBaseTest.cs (.../TopLevelIllustrationPointBaseTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelIllustrationPointBaseTest.cs (.../TopLevelIllustrationPointBaseTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointTest.cs (.../TopLevelSubMechanismIllustrationPointTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointTest.cs (.../TopLevelSubMechanismIllustrationPointTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/WindDirectionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/WindDirectionTest.cs (.../WindDirectionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/IllustrationPoints/WindDirectionTest.cs (.../WindDirectionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.IllustrationPoints
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/LogNormalDistributionTest.cs (.../LogNormalDistributionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probabilistics
{
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/NormalDistributionTest.cs (.../NormalDistributionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probabilistics
{
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/TruncatedNormalDistributionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/TruncatedNormalDistributionTest.cs (.../TruncatedNormalDistributionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/TruncatedNormalDistributionTest.cs (.../TruncatedNormalDistributionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,11 +21,11 @@
using System;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probabilistics
{
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientLogNormalDistributionTest.cs (.../VariationCoefficientLogNormalDistributionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probabilistics
{
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probabilistics/VariationCoefficientNormalDistributionTest.cs (.../VariationCoefficientNormalDistributionTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,11 +22,11 @@
using System;
using System.Collections.Generic;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probabilistics
{
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probability/ProbabilityAssessmentOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probability/ProbabilityAssessmentOutputTest.cs (.../ProbabilityAssessmentOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Probability/ProbabilityAssessmentOutputTest.cs (.../ProbabilityAssessmentOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,12 +21,12 @@
using System;
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Probability
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresCalculationTest.cs
===================================================================
diff -u -r3126832223e21f55afdd473dc3c7bfac8b42fb66 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresCalculationTest.cs (.../StructuresCalculationTest.cs) (revision 3126832223e21f55afdd473dc3c7bfac8b42fb66)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresCalculationTest.cs (.../StructuresCalculationTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,11 +20,11 @@
// All rights reserved.
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Structures
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs
===================================================================
diff -u -r6582cffcc14571ddb78265e95a9da39785cc58cf -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 6582cffcc14571ddb78265e95a9da39785cc58cf)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -25,14 +25,14 @@
using Core.Common.Base;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Structures
Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresOutputTest.cs
===================================================================
diff -u -r0f827ea0e06ceae9e35fa54e42abed8796111539 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresOutputTest.cs (.../StructuresOutputTest.cs) (revision 0f827ea0e06ceae9e35fa54e42abed8796111539)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresOutputTest.cs (.../StructuresOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,12 +20,12 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.Test.Structures
Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -r3126832223e21f55afdd473dc3c7bfac8b42fb66 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision 3126832223e21f55afdd473dc3c7bfac8b42fb66)
+++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,12 +19,12 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.Structures;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Common.Data.TestUtil
{
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeHeightOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeHeightOutputTest.cs (.../DikeHeightOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/DikeHeightOutputTest.cs (.../DikeHeightOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,13 +20,13 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs
===================================================================
diff -u -r99726aa07c6ee52446fc70a00a705863cc644882 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision 99726aa07c6ee52446fc70a00a705863cc644882)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsCalculationTest.cs (.../GrassCoverErosionInwardsCalculationTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,10 +21,10 @@
using System;
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.GrassCoverErosionInwards.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs
===================================================================
diff -u -r63d772846c8c1b000866a9b981e0890d34b63104 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs (.../GrassCoverErosionInwardsInputTest.cs) (revision 63d772846c8c1b000866a9b981e0890d34b63104)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs (.../GrassCoverErosionInwardsInputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -25,14 +25,14 @@
using Core.Common.Base;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.GrassCoverErosionInwards.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsOutputTest.cs (.../GrassCoverErosionInwardsOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsOutputTest.cs (.../GrassCoverErosionInwardsOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,10 +21,10 @@
using System;
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.GrassCoverErosionInwards.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/HydraulicLoadsOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/HydraulicLoadsOutputTest.cs (.../HydraulicLoadsOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/HydraulicLoadsOutputTest.cs (.../HydraulicLoadsOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,13 +20,13 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingOutputTest.cs (.../OvertoppingOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingOutputTest.cs (.../OvertoppingOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,13 +20,13 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingRateOutputTest.cs
===================================================================
diff -u -r3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingRateOutputTest.cs (.../OvertoppingRateOutputTest.cs) (revision 3a9d99a08904f51923c5dfbbeb3f4133e95f6f3a)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/OvertoppingRateOutputTest.cs (.../OvertoppingRateOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,13 +20,13 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Data.TestUtil.IllustrationPoints;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using GrassCoverErosionInwardsCloneAssert = Ringtoets.GrassCoverErosionInwards.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.Test
Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -r4c394b22a72798514dbbba8935f8683147da0ef3 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision 4c394b22a72798514dbbba8935f8683147da0ef3)
+++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,9 +19,9 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.GrassCoverErosionInwards.Data.TestUtil
Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs
===================================================================
diff -u -r63d772846c8c1b000866a9b981e0890d34b63104 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision 63d772846c8c1b000866a9b981e0890d34b63104)
+++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,13 +22,13 @@
using System;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.HeightStructures.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using HeightStructuresCloneAssert = Ringtoets.HeightStructures.Data.TestUtil.CloneAssert;
namespace Ringtoets.HeightStructures.Data.Test
Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -r898d42ca6354285169751f4de231f96f40b1f6f9 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision 898d42ca6354285169751f4de231f96f40b1f6f9)
+++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,9 +19,9 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.HeightStructures.Data.TestUtil
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationScenarioTest.cs
===================================================================
diff -u -rc0e5aa8bbc6771466f3d156ccf72bf2ec380779a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationScenarioTest.cs (.../PipingCalculationScenarioTest.cs) (revision c0e5aa8bbc6771466f3d156ccf72bf2ec380779a)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationScenarioTest.cs (.../PipingCalculationScenarioTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,11 +21,11 @@
using System;
using Core.Common.Base.Data;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Piping.Data.TestUtil;
using Ringtoets.Piping.KernelWrapper.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using PipingCloneAssert = Ringtoets.Piping.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.Test
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationTest.cs
===================================================================
diff -u -rc0e5aa8bbc6771466f3d156ccf72bf2ec380779a -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationTest.cs (.../PipingCalculationTest.cs) (revision c0e5aa8bbc6771466f3d156ccf72bf2ec380779a)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingCalculationTest.cs (.../PipingCalculationTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,12 +21,12 @@
using System;
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Rhino.Mocks;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Piping.Data.TestUtil;
using Ringtoets.Piping.KernelWrapper.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using PipingCloneAssert = Ringtoets.Piping.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.Test
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs
===================================================================
diff -u -re8c75518a5643835537e254f6cb40c55b6b31829 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs (.../PipingInputTest.cs) (revision e8c75518a5643835537e254f6cb40c55b6b31829)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingInputTest.cs (.../PipingInputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -24,6 +24,7 @@
using Core.Common.Base;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
@@ -35,7 +36,6 @@
using Ringtoets.Piping.KernelWrapper.SubCalculator;
using Ringtoets.Piping.KernelWrapper.TestUtil.SubCalculator;
using Ringtoets.Piping.Primitives;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using PipingCloneAssert = Ringtoets.Piping.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.Test
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingOutputTest.cs
===================================================================
diff -u -r6c8a7d73c47032ee7253c4793b94be09736a4efb -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingOutputTest.cs (.../PipingOutputTest.cs) (revision 6c8a7d73c47032ee7253c4793b94be09736a4efb)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingOutputTest.cs (.../PipingOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -21,10 +21,10 @@
using System;
using Core.Common.Base;
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using PipingCloneAssert = Ringtoets.Piping.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.Test
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSemiProbabilisticOutputTest.cs
===================================================================
diff -u -r3cf4d4c65cf2ce285bdeb71162cf3b0a79cb3742 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSemiProbabilisticOutputTest.cs (.../PipingSemiProbabilisticOutputTest.cs) (revision 3cf4d4c65cf2ce285bdeb71162cf3b0a79cb3742)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/PipingSemiProbabilisticOutputTest.cs (.../PipingSemiProbabilisticOutputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -20,10 +20,10 @@
// All rights reserved.
using System;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using PipingCloneAssert = Ringtoets.Piping.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.Test
Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -r6c8a7d73c47032ee7253c4793b94be09736a4efb -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision 6c8a7d73c47032ee7253c4793b94be09736a4efb)
+++ Ringtoets/Piping/test/Ringtoets.Piping.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,9 +19,9 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.Piping.Data.TestUtil
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs
===================================================================
diff -u -r543d6e519f8fe4dabaf86586f0520983f15f85a7 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs (.../StabilityPointStructuresInputTest.cs) (revision 543d6e519f8fe4dabaf86586f0520983f15f85a7)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs (.../StabilityPointStructuresInputTest.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -22,13 +22,13 @@
using System;
using Core.Common.Base.Data;
using Core.Common.Base.Geometry;
+using Core.Common.Data.TestUtil;
using Core.Common.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.StabilityPointStructures.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using StabilityPointStructuresCloneAssert = Ringtoets.StabilityPointStructures.Data.TestUtil.CloneAssert;
namespace Ringtoets.StabilityPointStructures.Data.Test
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/CloneAssert.cs
===================================================================
diff -u -r543d6e519f8fe4dabaf86586f0520983f15f85a7 -rb286d241c3bfefe14166cc01382e806c98b54b5a
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision 543d6e519f8fe4dabaf86586f0520983f15f85a7)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.TestUtil/CloneAssert.cs (.../CloneAssert.cs) (revision b286d241c3bfefe14166cc01382e806c98b54b5a)
@@ -19,9 +19,9 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Data.TestUtil;
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
-using CoreCloneAssert = Core.Common.Data.TestUtil.CloneAssert;
using CommonCloneAssert = Ringtoets.Common.Data.TestUtil.CloneAssert;
namespace Ringtoets.StabilityPointStructures.Data.TestUtil