Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/UpliftVanCalculatorTest.cs
===================================================================
diff -u -r3cefd9c4bd6727e7f34a6f32a55bd7d0e135aecd -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision 3cefd9c4bd6727e7f34a6f32a55bd7d0e135aecd)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.Test/Calculators/UpliftVan/UpliftVanCalculatorTest.cs (.../UpliftVanCalculatorTest.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -24,6 +24,7 @@
using System.Linq;
using Core.Common.Base.Geometry;
using Core.Common.TestUtil;
+using Deltares.WTIStability;
using Deltares.WTIStability.Data.Geo;
using NUnit.Framework;
using Rhino.Mocks;
@@ -37,7 +38,6 @@
using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels;
using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels.UpliftVan;
using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels.UpliftVan.Input;
-using Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels.UpliftVan.Output;
using Ringtoets.MacroStabilityInwards.Primitives;
using Point2D = Core.Common.Base.Geometry.Point2D;
@@ -311,8 +311,8 @@
private static void SetValidKernelOutput(UpliftVanKernelStub upliftVanKernel)
{
- upliftVanKernel.SlidingCurveResult = SlidingDualCircleTestFactory.Create();
- upliftVanKernel.SlipPlaneResult = SlipPlaneUpliftVanTestFactory.Create();
+ upliftVanKernel.SlidingCurveResult = CreateSlidingDualCircle();
+ upliftVanKernel.SlipPlaneResult = CreateSlipPlaneUpliftVan();
}
private static void SetCompleteKernelOutput(UpliftVanKernelStub upliftVanKernel)
@@ -323,8 +323,107 @@
upliftVanKernel.ZValue = random.NextDouble();
upliftVanKernel.ForbiddenZonesXEntryMax = random.NextDouble();
upliftVanKernel.ForbiddenZonesXEntryMin = random.NextDouble();
- upliftVanKernel.SlidingCurveResult = SlidingDualCircleTestFactory.Create();
- upliftVanKernel.SlipPlaneResult = SlipPlaneUpliftVanTestFactory.Create();
+ upliftVanKernel.SlidingCurveResult = CreateSlidingDualCircle();
+ upliftVanKernel.SlipPlaneResult = CreateSlipPlaneUpliftVan();
}
+
+ private static SlipPlaneUpliftVan CreateSlipPlaneUpliftVan()
+ {
+ return new SlipPlaneUpliftVan
+ {
+ SlipPlaneLeftGrid = new SlipCircleGrid
+ {
+ GridXLeft = 0.1,
+ GridXRight = 0.2,
+ GridZTop = 0.3,
+ GridZBottom = 0.4,
+ GridXNumber = 1,
+ GridZNumber = 2
+ },
+ SlipPlaneRightGrid = new SlipCircleGrid
+ {
+ GridXLeft = 0.5,
+ GridXRight = 0.6,
+ GridZTop = 0.7,
+ GridZBottom = 0.8,
+ GridXNumber = 3,
+ GridZNumber = 4
+ },
+ SlipPlaneTangentLine = new SlipCircleTangentLine
+ {
+ BoundaryHeights =
+ {
+ new TangentLine(1.1),
+ new TangentLine(2.2)
+ }
+ }
+ };
+ }
+
+ private static SlidingDualCircle CreateSlidingDualCircle()
+ {
+ return new SlidingDualCircle
+ {
+ LeftCircleIsActive = false,
+ ActiveCircle = new GeometryPoint(0.1, 0.2),
+ ActiveForce = 0.3,
+ ActiveForce0 = 0.4,
+ ActiveRadius = 0.5,
+ DrivingMomentActive = 0.6,
+ ResistingMomentActive = 0.7,
+ PassiveCircle = new GeometryPoint(0.8, 0.9),
+ PassiveForce = 1.0,
+ PassiveForce0 = 1.1,
+ PassiveRadius = 1.2,
+ DrivingMomentPassive = 1.3,
+ ResistingMomentPassive = 1.4,
+ HorizontalForce = 1.5,
+ HorizontalForce0 = 1.6,
+ Slices =
+ {
+ new Slice
+ {
+ TopLeftX = 1.7,
+ TopLeftZ = 1.8,
+ TopRightX = 1.9,
+ TopRightZ = 2.0,
+ BottomLeftX = 2.1,
+ BottomLeftZ = 2.2,
+ BottomRightX = 2.3,
+ BottomRightZ = 2.4,
+ Cohesion = 2.5,
+ Phi = 2.6,
+ PGrens = 2.7,
+ OCR = 2.8,
+ POP = 2.9,
+ DegreeofConsolidationPorePressure = 3.0,
+ PorePressureDueToDegreeOfConsolidationLoad = 3.1,
+ Dilatancy = 3.2,
+ ExternalLoad = 3.3,
+ HydrostaticPorePressure = 3.4,
+ LeftForce = 3.5,
+ LeftForceAngle = 3.6,
+ LeftForceY = 3.7,
+ RightForce = 3.8,
+ RightForceAngle = 3.9,
+ RightForceY = 4.0,
+ LoadStress = 4.1,
+ NormalStress = 4.2,
+ PoreOnSurface = 4.3,
+ HPoreOnSurface = 4.4,
+ VPoreOnSurface = 4.5,
+ PiezometricPorePressure = 4.6,
+ EffectiveStress = 4.7,
+ EffectiveStressDaily = 4.8,
+ ExcessPorePressure = 4.9,
+ ShearStress = 5.0,
+ SoilStress = 5.1,
+ TotalPorePressure = 5.2,
+ TotalStress = 5.3,
+ Weight = 5.4
+ }
+ }
+ };
+ }
}
}
\ No newline at end of file
Fisheye: Tag bcb7ee1318355c19145c87d641d31c97307d59dd refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanCalculatorResultTestFactoryTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactoryTest.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactoryTest.cs (.../UpliftVanGridResultTestFactoryTest.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactoryTest.cs (.../UpliftVanGridResultTestFactoryTest.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -29,7 +29,7 @@
public class UpliftVanGridResultTestFactoryTest
{
[Test]
- public void Create_Always_ReturnGridWithDefaultValues()
+ public void Create_Always_ReturnUpliftVanGridResult()
{
// Call
UpliftVanGridResult grid = UpliftVanGridResultTestFactory.Create();
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactoryTest.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactoryTest.cs (.../UpliftVanSlidingCircleResultTestFactoryTest.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactoryTest.cs (.../UpliftVanSlidingCircleResultTestFactoryTest.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -30,7 +30,7 @@
public class UpliftVanSlidingCircleResultTestFactoryTest
{
[Test]
- public void Create_Always_ReturnCircleWithDefaultValues()
+ public void Create_Always_ReturnUpliftVanSlidingCircleResult()
{
// Call
UpliftVanSlidingCircleResult circle = UpliftVanSlidingCircleResultTestFactory.Create();
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactoryTest.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactoryTest.cs (.../UpliftVanSlidingCurveResultTestFactoryTest.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactoryTest.cs (.../UpliftVanSlidingCurveResultTestFactoryTest.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -30,15 +30,14 @@
public class UpliftVanSlidingCurveResultTestFactoryTest
{
[Test]
- public void Create_Always_ReturnSlidingCurveResult()
+ public void Create_Always_ReturnUpliftVanSlidingCurveResult()
{
// Call
UpliftVanSlidingCurveResult curve = UpliftVanSlidingCurveResultTestFactory.Create();
// Assert
AssertCircle(curve.LeftCircle);
AssertCircle(curve.RightCircle);
-
Assert.AreEqual(0, curve.IteratedHorizontalForce);
Assert.AreEqual(0, curve.NonIteratedHorizontalForce);
CollectionAssert.IsEmpty(curve.Slices);
Fisheye: Tag bcb7ee1318355c19145c87d641d31c97307d59dd refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Kernels/UpliftVan/Output/SlidingDualCircleTestFactoryTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj
===================================================================
diff -u -r75ce45191982ad63e9d87873f0f00c2c5245b04d -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj) (revision 75ce45191982ad63e9d87873f0f00c2c5245b04d)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test.csproj) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -53,12 +53,10 @@
Properties\GlobalAssembly.cs
-
-
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/MacroStabilityInwardsCalculatorFactoryConfig.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/MacroStabilityInwardsCalculatorFactoryConfig.cs (.../MacroStabilityInwardsCalculatorFactoryConfig.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/MacroStabilityInwardsCalculatorFactoryConfig.cs (.../MacroStabilityInwardsCalculatorFactoryConfig.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -27,8 +27,7 @@
///
/// This class can be used to set a temporary
/// for while testing.
- /// Disposing an instance of this class will revert the
- /// .
+ /// Disposing an instance of this class will revert the .
///
///
/// The following is an example for how to use this class:
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/TestMacroStabilityInwardsCalculatorFactory.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/TestMacroStabilityInwardsCalculatorFactory.cs (.../TestMacroStabilityInwardsCalculatorFactory.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/TestMacroStabilityInwardsCalculatorFactory.cs (.../TestMacroStabilityInwardsCalculatorFactory.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -28,7 +28,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators
{
///
- /// Test calculator factory which can be used in tests.
+ /// Factory which creates macro stability inwards calculator stubs for testing purposes.
///
public class TestMacroStabilityInwardsCalculatorFactory : IMacroStabilityInwardsCalculatorFactory
{
@@ -48,6 +48,7 @@
public IUpliftVanCalculator CreateUpliftVanCalculator(UpliftVanCalculatorInput input, IMacroStabilityInwardsKernelFactory factory)
{
LastCreatedUpliftVanCalculator.Input = input;
+
return LastCreatedUpliftVanCalculator;
}
}
Fisheye: Tag bcb7ee1318355c19145c87d641d31c97307d59dd refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanCalculatorResultTestFactory.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactory.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactory.cs (.../UpliftVanGridResultTestFactory.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanGridResultTestFactory.cs (.../UpliftVanGridResultTestFactory.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -24,8 +24,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Output
{
///
- /// Factory to create simple
- /// instances that can be used for testing.
+ /// Factory to create simple instances that can be used for testing.
///
public static class UpliftVanGridResultTestFactory
{
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactory.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactory.cs (.../UpliftVanSlidingCircleResultTestFactory.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCircleResultTestFactory.cs (.../UpliftVanSlidingCircleResultTestFactory.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -25,8 +25,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Output
{
///
- /// Factory to create simple
- /// instances that can be used for testing.
+ /// Factory to create simple instances that can be used for testing.
///
public static class UpliftVanSlidingCircleResultTestFactory
{
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactory.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactory.cs (.../UpliftVanSlidingCurveResultTestFactory.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/Output/UpliftVanSlidingCurveResultTestFactory.cs (.../UpliftVanSlidingCurveResultTestFactory.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -25,8 +25,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan.Output
{
///
- /// Factory to create simple
- /// instances that can be used for testing.
+ /// Factory to create simple instances that can be used for testing.
///
public static class UpliftVanSlidingCurveResultTestFactory
{
@@ -36,10 +35,9 @@
/// The created .
public static UpliftVanSlidingCurveResult Create()
{
- return new UpliftVanSlidingCurveResult(
- UpliftVanSlidingCircleResultTestFactory.Create(),
- UpliftVanSlidingCircleResultTestFactory.Create(),
- Enumerable.Empty(), 0, 0);
+ return new UpliftVanSlidingCurveResult(UpliftVanSlidingCircleResultTestFactory.Create(),
+ UpliftVanSlidingCircleResultTestFactory.Create(),
+ Enumerable.Empty(), 0, 0);
}
}
}
\ No newline at end of file
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/UpliftVanCalculatorStub.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/UpliftVanCalculatorStub.cs (.../UpliftVanCalculatorStub.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Calculators/UpliftVan/UpliftVanCalculatorStub.cs (.../UpliftVanCalculatorStub.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -28,7 +28,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Calculators.UpliftVan
{
///
- /// Stub for the real macro stability inwards calculator.
+ /// Uplift Van calculator stub for testing purposes.
///
public class UpliftVanCalculatorStub : IUpliftVanCalculator
{
@@ -38,12 +38,34 @@
public UpliftVanCalculatorResult Calculate()
{
- return Output ?? (Output = UpliftVanCalculatorResultTestFactory.Create());
+ return Output ?? (Output = CreateUpliftVanCalculatorResult());
}
public List Validate()
{
return new List();
}
+
+ private static UpliftVanCalculatorResult CreateUpliftVanCalculatorResult()
+ {
+ return new UpliftVanCalculatorResult(
+ UpliftVanSlidingCurveResultTestFactory.Create(),
+ new UpliftVanCalculationGridResult(
+ UpliftVanGridResultTestFactory.Create(),
+ UpliftVanGridResultTestFactory.Create(),
+ new[]
+ {
+ 3,
+ 2,
+ 1.5
+ }),
+ new UpliftVanCalculatorResult.ConstructionProperties
+ {
+ FactorOfStability = 0.1,
+ ZValue = 0.2,
+ ForbiddenZonesXEntryMin = 0.3,
+ ForbiddenZonesXEntryMax = 0.4
+ });
+ }
}
}
\ No newline at end of file
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/MacroStabilityInwardsKernelFactoryConfig.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/MacroStabilityInwardsKernelFactoryConfig.cs (.../MacroStabilityInwardsKernelFactoryConfig.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/MacroStabilityInwardsKernelFactoryConfig.cs (.../MacroStabilityInwardsKernelFactoryConfig.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -27,8 +27,7 @@
///
/// This class can be used to set a temporary
/// for while testing.
- /// Disposing an instance of this class will revert the
- /// .
+ /// Disposing an instance of this class will revert the .
///
///
/// The following is an example for how to use this class:
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/TestMacroStabilityInwardsKernelFactory.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/TestMacroStabilityInwardsKernelFactory.cs (.../TestMacroStabilityInwardsKernelFactory.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/TestMacroStabilityInwardsKernelFactory.cs (.../TestMacroStabilityInwardsKernelFactory.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -26,7 +26,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels
{
///
- /// Factory that creates macro stability inwards kernels that can be used for testing purposes.
+ /// Factory which creates macro stability inwards kernel stubs for testing purposes.
///
public class TestMacroStabilityInwardsKernelFactory : IMacroStabilityInwardsKernelFactory
{
Fisheye: Tag bcb7ee1318355c19145c87d641d31c97307d59dd refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/Output/SlidingDualCircleTestFactory.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag bcb7ee1318355c19145c87d641d31c97307d59dd refers to a dead (removed) revision in file `Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/Output/SlipPlaneUpliftVanTestFactory.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs
===================================================================
diff -u -r8cf507b4db04c91cd5bc5ed243616f093a3016da -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs (.../UpliftVanKernelStub.cs) (revision 8cf507b4db04c91cd5bc5ed243616f093a3016da)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Kernels/UpliftVan/UpliftVanKernelStub.cs (.../UpliftVanKernelStub.cs) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -26,7 +26,7 @@
namespace Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Kernels.UpliftVan
{
///
- /// Class that represents an Uplift Van kernel stub.
+ /// Uplift Van kernel stub for testing purposes.
///
public class UpliftVanKernelStub : IUpliftVanKernel
{
Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj
===================================================================
diff -u -r2d7bf1296a75a456a433ae776fce3de1666fc096 -rbcb7ee1318355c19145c87d641d31c97307d59dd
--- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj) (revision 2d7bf1296a75a456a433ae776fce3de1666fc096)
+++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj (.../Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.csproj) (revision bcb7ee1318355c19145c87d641d31c97307d59dd)
@@ -57,14 +57,11 @@
Properties\GlobalAssembly.cs
-
-
-