Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Common/HydraRingCalculationTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Common/HydraRingConfigurationTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Common/HydraRingDikeSectionTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Common/HydraRingProfilePointTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Common/HydraRingVariableTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDeviationTypeTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDeviationTypeTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDeviationTypeTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,44 @@
+// Copyright (C) Stichting Deltares 2016. 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;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingDeviationTypeTest
+ {
+ [Test]
+ public void Values_HasTwo()
+ {
+ Assert.AreEqual(2, Enum.GetValues(typeof(HydraRingDeviationType)).Length);
+ }
+
+ [Test]
+ public void ConvertToInteger_ForAllValues_ReturnsExpectedInteger()
+ {
+ Assert.AreEqual(0, (int) HydraRingDeviationType.Standard);
+ Assert.AreEqual(1, (int) HydraRingDeviationType.Variation);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDikeSectionTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDikeSectionTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDikeSectionTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,47 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using NUnit.Framework;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingDikeSectionTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var hydraRingDikeSection = new HydraRingDikeSection(1, "Name", 2.2, 3.3, 4.4, 5.5, 6.6, 7.7);
+
+ // Assert
+ Assert.AreEqual(1, hydraRingDikeSection.SectionId);
+ Assert.AreEqual("Name", hydraRingDikeSection.SectionName);
+ Assert.AreEqual(2.2, hydraRingDikeSection.SectionBeginCoordinate);
+ Assert.AreEqual(3.3, hydraRingDikeSection.SectionEndCoordinate);
+ Assert.AreEqual(4.4, hydraRingDikeSection.SectionLength);
+ Assert.AreEqual(5.5, hydraRingDikeSection.CrossSectionXCoordinate);
+ Assert.AreEqual(6.6, hydraRingDikeSection.CrossSectionYCoordinate);
+ Assert.AreEqual(7.7, hydraRingDikeSection.CrossSectionNormal);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDistributionTypeTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDistributionTypeTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingDistributionTypeTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,45 @@
+// Copyright (C) Stichting Deltares 2016. 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;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingDistributionTypeTest
+ {
+ [Test]
+ public void Values_HasThree()
+ {
+ Assert.AreEqual(3, Enum.GetValues(typeof(HydraRingDistributionType)).Length);
+ }
+
+ [Test]
+ public void ConvertToInteger_ForAllValues_ReturnsExpectedInteger()
+ {
+ Assert.AreEqual(0, (int) HydraRingDistributionType.Deterministic);
+ Assert.AreEqual(2, (int) HydraRingDistributionType.Normal);
+ Assert.AreEqual(4, (int) HydraRingDistributionType.LogNormal);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingFailureMechanismTypeTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingFailureMechanismTypeTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingFailureMechanismTypeTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,37 @@
+// Copyright (C) Stichting Deltares 2016. 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;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingFailureMechanismTypeTest
+ {
+ [Test]
+ public void Values_HasTen()
+ {
+ Assert.AreEqual(10, Enum.GetValues(typeof(HydraRingFailureMechanismType)).Length);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingProfilePointTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingProfilePointTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingProfilePointTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,42 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using NUnit.Framework;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingProfilePointTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var hydraRingProfilePoint = new HydraRingProfilePoint(1.1, 2.2);
+
+ // Assert
+ Assert.AreEqual(1.1, hydraRingProfilePoint.X);
+ Assert.AreEqual(2.2, hydraRingProfilePoint.Z);
+ Assert.AreEqual(1.0, hydraRingProfilePoint.Roughness);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingTimeIntegrationSchemeTypeTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingTimeIntegrationSchemeTypeTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingTimeIntegrationSchemeTypeTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,45 @@
+// Copyright (C) Stichting Deltares 2016. 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;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingTimeIntegrationSchemeTypeTest
+ {
+ [Test]
+ public void Values_HasThree()
+ {
+ Assert.AreEqual(3, Enum.GetValues(typeof(HydraRingTimeIntegrationSchemeType)).Length);
+ }
+
+ [Test]
+ public void ConvertToInteger_ForAllValues_ReturnsExpectedInteger()
+ {
+ Assert.AreEqual(1, (int) HydraRingTimeIntegrationSchemeType.FBC);
+ Assert.AreEqual(2, (int) HydraRingTimeIntegrationSchemeType.APT);
+ Assert.AreEqual(3, (int) HydraRingTimeIntegrationSchemeType.NTI);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingUncertaintiesTypeTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingUncertaintiesTypeTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingUncertaintiesTypeTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,46 @@
+// Copyright (C) Stichting Deltares 2016. 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;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingUncertaintiesTypeTest
+ {
+ [Test]
+ public void Values_HasFour()
+ {
+ Assert.AreEqual(4, Enum.GetValues(typeof(HydraRingUncertaintiesType)).Length);
+ }
+
+ [Test]
+ public void ConvertToInteger_ForAllValues_ReturnsExpectedInteger()
+ {
+ Assert.AreEqual(0, (int) HydraRingUncertaintiesType.None);
+ Assert.AreEqual(1, (int) HydraRingUncertaintiesType.All);
+ Assert.AreEqual(2, (int) HydraRingUncertaintiesType.Model);
+ Assert.AreEqual(3, (int) HydraRingUncertaintiesType.Statistic);
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingVariableTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingVariableTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Data/HydraRingVariableTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,52 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using NUnit.Framework;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test.Data
+{
+ [TestFixture]
+ public class HydraRingVariableTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var hydraRingVariable = new HydraRingVariableImplementation(1, HydraRingDistributionType.LogNormal, 2.2, HydraRingDeviationType.Variation, 3.3, 4.4, 5.5);
+
+ // Assert
+ Assert.AreEqual(1, hydraRingVariable.VariableId);
+ Assert.AreEqual(HydraRingDistributionType.LogNormal, hydraRingVariable.DistributionType);
+ Assert.AreEqual(2.2, hydraRingVariable.Value);
+ Assert.AreEqual(HydraRingDeviationType.Variation, hydraRingVariable.DeviationType);
+ Assert.AreEqual(3.3, hydraRingVariable.Mean);
+ Assert.AreEqual(4.4, hydraRingVariable.Variability);
+ Assert.AreEqual(5.5, hydraRingVariable.Shift);
+ }
+
+ private class HydraRingVariableImplementation : HydraRingVariable
+ {
+ public HydraRingVariableImplementation(int variableId, HydraRingDistributionType distributionType, double value, HydraRingDeviationType deviationType, double mean, double variability, double shift)
+ : base(variableId, distributionType, value, deviationType, mean, variability, shift) { }
+ }
+ }
+}
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/HydraRingCalculationTest.cs
===================================================================
diff -u
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/HydraRingCalculationTest.cs (revision 0)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/HydraRingCalculationTest.cs (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -0,0 +1,90 @@
+// Copyright (C) Stichting Deltares 2016. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using NUnit.Framework;
+using Ringtoets.HydraRing.Calculation.Data;
+
+namespace Ringtoets.HydraRing.Calculation.Test
+{
+ [TestFixture]
+ public class HydraRingCalculationTest
+ {
+ [Test]
+ public void Constructor_ExpectedValues()
+ {
+ // Call
+ var hydraRingCalculation = new HydraRingCalculationImplementation(1);
+
+ // Assert
+ Assert.AreEqual(1, hydraRingCalculation.HydraulicBoundaryLocationId);
+ Assert.AreEqual(HydraRingFailureMechanismType.QVariant, hydraRingCalculation.FailureMechanismType);
+ CollectionAssert.IsEmpty(hydraRingCalculation.Variables);
+ CollectionAssert.IsEmpty(hydraRingCalculation.ProfilePoints);
+ Assert.IsNaN(hydraRingCalculation.Beta);
+ }
+
+ [Test]
+ public void GetSubMechanismModelId_ReturnsExpectedValues()
+ {
+ // Call
+ var hydraRingCalculation = new HydraRingCalculationImplementation(1);
+
+ // Assert
+ Assert.AreEqual(10, hydraRingCalculation.GetSubMechanismModelId(1));
+ Assert.AreEqual(20, hydraRingCalculation.GetSubMechanismModelId(2));
+ Assert.IsNull(hydraRingCalculation.GetSubMechanismModelId(3));
+ }
+
+ private class HydraRingCalculationImplementation : HydraRingCalculation
+ {
+ public HydraRingCalculationImplementation(int hydraulicBoundaryLocationId) : base(hydraulicBoundaryLocationId) {}
+
+ public override HydraRingFailureMechanismType FailureMechanismType
+ {
+ get
+ {
+ return HydraRingFailureMechanismType.QVariant;
+ }
+ }
+
+ public override HydraRingDikeSection DikeSection
+ {
+ get
+ {
+ return new HydraRingDikeSection(1, "Name", 2.2, 3.3, 4.4, 5.5, 6.6, 7.7);
+ }
+ }
+
+ public override int? GetSubMechanismModelId(int subMechanismId)
+ {
+ switch (subMechanismId)
+ {
+ case 1:
+ return 10;
+ case 2:
+ return 20;
+ default:
+ return null;
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
Fisheye: Tag 56f86024f7598b3d5dd16940ddfa96c4fc72592d refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/HydraRingConfigurationTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Ringtoets.HydraRing.Calculation.Test.csproj
===================================================================
diff -u -r6d95a1695a43dacc80bd5dd3a118deb98d99702d -r59b1c01f9c155ff608c09769f19fd0158dea38e8
--- Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Ringtoets.HydraRing.Calculation.Test.csproj (.../Ringtoets.HydraRing.Calculation.Test.csproj) (revision 6d95a1695a43dacc80bd5dd3a118deb98d99702d)
+++ Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Ringtoets.HydraRing.Calculation.Test.csproj (.../Ringtoets.HydraRing.Calculation.Test.csproj) (revision 59b1c01f9c155ff608c09769f19fd0158dea38e8)
@@ -48,11 +48,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -62,12 +62,12 @@
-
-
-
+
+
+
-
-
+
+
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Types/HydraRingDeviationTypeTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Types/HydraRingDistributionTypeTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Types/HydraRingFailureMechanismTypeTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Types/HydraRingTimeIntegrationSchemeTypeTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 59b1c01f9c155ff608c09769f19fd0158dea38e8 refers to a dead (removed) revision in file `Ringtoets/HydraRing/test/Ringtoets.HydraRing.Calculation.Test/Types/HydraRingUncertaintiesTypeTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?