Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs
===================================================================
diff -u -r0ee0d86b58275264171be7f91afa87b7edd0d67a -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs (.../WaveConditionsInputStepSizeExtensions.cs) (revision 0ee0d86b58275264171be7f91afa87b7edd0d67a)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputStepSizeExtensions.cs (.../WaveConditionsInputStepSizeExtensions.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -45,7 +45,7 @@
case WaveConditionsInputStepSize.Two:
return 2.0;
default:
- throw new InvalidEnumArgumentException("stepSize", (int) stepSize, typeof(WaveConditionsInputStepSize));
+ throw new InvalidEnumArgumentException(nameof(stepSize), (int) stepSize, typeof(WaveConditionsInputStepSize));
}
}
}
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsOutput.cs
===================================================================
diff -u -r07f3d67fe9512b3c8303ff09398b0a234900d546 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsOutput.cs (.../WaveConditionsOutput.cs) (revision 07f3d67fe9512b3c8303ff09398b0a234900d546)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsOutput.cs (.../WaveConditionsOutput.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -172,7 +172,7 @@
{
if (!Enum.IsDefined(typeof(CalculationConvergence), value))
{
- throw new InvalidEnumArgumentException("value", (int) value, typeof(CalculationConvergence));
+ throw new InvalidEnumArgumentException(nameof(value), (int) value, typeof(CalculationConvergence));
}
calculationConvergence = value;
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Factories/WaveConditionsChartDataPointsFactory.cs
===================================================================
diff -u -r93036b575ee81b4517b29db51f1eadf81454fb93 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Factories/WaveConditionsChartDataPointsFactory.cs (.../WaveConditionsChartDataPointsFactory.cs) (revision 93036b575ee81b4517b29db51f1eadf81454fb93)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Factories/WaveConditionsChartDataPointsFactory.cs (.../WaveConditionsChartDataPointsFactory.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -131,7 +131,7 @@
///
public static Point2D[] CreateLowerBoundaryRevetmentGeometryPoints(WaveConditionsInput input)
{
- return input != null
+ return input != null
? CreateGeometryPoints(input, () => input.LowerBoundaryRevetment)
: new Point2D[0];
}
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/PresentationObjects/WaveConditionsInputContext.cs
===================================================================
diff -u -r43701b21ae485678c471bcf76ca9c374fd16b9f9 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/PresentationObjects/WaveConditionsInputContext.cs (.../WaveConditionsInputContext.cs) (revision 43701b21ae485678c471bcf76ca9c374fd16b9f9)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/PresentationObjects/WaveConditionsInputContext.cs (.../WaveConditionsInputContext.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -53,7 +53,7 @@
///
/// Gets the calculation containing the wrapped .
///
- public ICalculation Calculation { get; private set; }
+ public ICalculation Calculation { get; }
///
/// Gets the hydraulic boundary locations.
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Ringtoets.Revetment.Forms.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Ringtoets.Revetment.Forms.csproj (.../Ringtoets.Revetment.Forms.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Forms/Ringtoets.Revetment.Forms.csproj (.../Ringtoets.Revetment.Forms.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -35,7 +35,6 @@
-
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/CoverType.cs
===================================================================
diff -u -r2057d3372084602a2d959db2e33dcf81de971a73 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/CoverType.cs (.../CoverType.cs) (revision 2057d3372084602a2d959db2e33dcf81de971a73)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/CoverType.cs (.../CoverType.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -41,6 +41,6 @@
///
/// Gets the name of the type of cover.
///
- public string Name { get; private set; }
+ public string Name { get; }
}
}
\ No newline at end of file
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs
===================================================================
diff -u -r2057d3372084602a2d959db2e33dcf81de971a73 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs (.../ExportableWaveConditions.cs) (revision 2057d3372084602a2d959db2e33dcf81de971a73)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs (.../ExportableWaveConditions.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -82,66 +82,66 @@
///
/// Gets the wave angle with respect to the dike normal.
///
- public RoundedDouble WaveAngle { get; private set; }
+ public RoundedDouble WaveAngle { get; }
///
/// Gets the wave direction with respect to North.
///
- public RoundedDouble WaveDirection { get; private set; }
+ public RoundedDouble WaveDirection { get; }
///
/// Gets the wave period.
///
- public RoundedDouble WavePeriod { get; private set; }
+ public RoundedDouble WavePeriod { get; }
///
/// Gets the wave height.
///
- public RoundedDouble WaveHeight { get; private set; }
+ public RoundedDouble WaveHeight { get; }
///
/// Gets the water level.
///
- public RoundedDouble WaterLevel { get; private set; }
+ public RoundedDouble WaterLevel { get; }
///
/// Gets the type of dike cover.
///
- public CoverType CoverType { get; private set; }
+ public CoverType CoverType { get; }
///
/// Gets the id of the foreshore.
///
- public string ForeshoreId { get; private set; }
+ public string ForeshoreId { get; }
///
/// Gets a value indicating whether a foreshore profile was used in the calculation.
///
- public bool UseForeshore { get; private set; }
+ public bool UseForeshore { get; }
///
/// Gets a value indicating whether a break water was used in the calculation.
///
- public bool UseBreakWater { get; private set; }
+ public bool UseBreakWater { get; }
///
/// Gets the y coordinate of the location.
///
- public double LocationYCoordinate { get; private set; }
+ public double LocationYCoordinate { get; }
///
/// Gets the x coordinate of the location.
///
- public double LocationXCoordinate { get; private set; }
+ public double LocationXCoordinate { get; }
///
/// Gets the name of the location.
///
- public string LocationName { get; private set; }
+ public string LocationName { get; }
///
/// Gets the name of the calculation.
///
- public string CalculationName { get; private set; }
+ public string CalculationName { get; }
}
}
\ No newline at end of file
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs
===================================================================
diff -u -r17b11c850b35c3ea99150ba25098b5b769b58f4f -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs (.../TestWaveConditionsCalculation.cs) (revision 17b11c850b35c3ea99150ba25098b5b769b58f4f)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs (.../TestWaveConditionsCalculation.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -19,6 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using System;
using Core.Common.Base;
using Ringtoets.Common.Data;
using Ringtoets.Common.Data.Calculation;
@@ -69,7 +70,7 @@
public object Clone()
{
- throw new System.NotImplementedException();
+ throw new NotImplementedException();
}
#endregion
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.Test/PropertyClasses/WaveConditionsInputContextPropertiesTest.cs
===================================================================
diff -u -rd485f27eb5a6d688406882dce60c3229e22f2ac2 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.Test/PropertyClasses/WaveConditionsInputContextPropertiesTest.cs (.../WaveConditionsInputContextPropertiesTest.cs) (revision d485f27eb5a6d688406882dce60c3229e22f2ac2)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.Test/PropertyClasses/WaveConditionsInputContextPropertiesTest.cs (.../WaveConditionsInputContextPropertiesTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -40,10 +40,10 @@
using Ringtoets.Common.Forms.TestUtil;
using Ringtoets.Common.Forms.UITypeEditors;
using Ringtoets.Revetment.Data;
+using Ringtoets.Revetment.Data.TestUtil;
using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.Revetment.Forms.TestUtil;
-using Ringtoets.Revetment.Data.TestUtil;
namespace Ringtoets.Revetment.Forms.Test.PropertyClasses
{
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -22,8 +22,8 @@
using NUnit.Framework;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PresentationObjects;
namespace Ringtoets.Revetment.Forms.TestUtil.Test
{
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/Ringtoets.Revetment.Forms.TestUtil.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/Ringtoets.Revetment.Forms.TestUtil.csproj (.../Ringtoets.Revetment.Forms.TestUtil.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/Ringtoets.Revetment.Forms.TestUtil.csproj (.../Ringtoets.Revetment.Forms.TestUtil.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -38,7 +38,6 @@
-
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -24,8 +24,8 @@
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PresentationObjects;
namespace Ringtoets.Revetment.Forms.TestUtil
{
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationWriterTest.cs
===================================================================
diff -u -r3a60f4df420a7669a047880a924bf4a0ff67c265 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationWriterTest.cs (.../WaveConditionsCalculationConfigurationWriterTest.cs) (revision 3a60f4df420a7669a047880a924bf4a0ff67c265)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationWriterTest.cs (.../WaveConditionsCalculationConfigurationWriterTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -130,7 +130,7 @@
// Setup
var configuration = new WaveConditionsCalculationConfiguration("fail")
{
- StepSize = (ConfigurationWaveConditionsInputStepSize?)9000
+ StepSize = (ConfigurationWaveConditionsInputStepSize?) 9000
};
var writer = new WaveConditionsCalculationConfigurationWriter("valid");
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsFactoryTest.cs
===================================================================
diff -u -rfe90a6d174a01975381e6cda55ed1f7f4e831a51 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsFactoryTest.cs (.../ExportableWaveConditionsFactoryTest.cs) (revision fe90a6d174a01975381e6cda55ed1f7f4e831a51)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsFactoryTest.cs (.../ExportableWaveConditionsFactoryTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -26,8 +26,8 @@
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.IO.WaveConditions;
namespace Ringtoets.Revetment.IO.Test.WaveConditions
{
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsTest.cs (.../ExportableWaveConditionsTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/WaveConditions/ExportableWaveConditionsTest.cs (.../ExportableWaveConditionsTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -24,8 +24,8 @@
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.IO.WaveConditions;
namespace Ringtoets.Revetment.IO.Test.WaveConditions
{
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs
===================================================================
diff -u -rff948d4633181ead2677ab35467a93b4118c6751 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs (.../GeneralStabilityPointStructuresInput.cs) (revision ff948d4633181ead2677ab35467a93b4118c6751)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs (.../GeneralStabilityPointStructuresInput.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -79,7 +79,7 @@
/// Gets the gravitational acceleration.
/// [m/s^2]
///
- public RoundedDouble GravitationalAcceleration { get; private set; }
+ public RoundedDouble GravitationalAcceleration { get; }
#region Length effect parameters
@@ -112,37 +112,37 @@
///
/// Gets the model factor for the storage volume.
///
- public LogNormalDistribution ModelFactorStorageVolume { get; private set; }
+ public LogNormalDistribution ModelFactorStorageVolume { get; }
///
/// Gets the model factor for sub critical flow.
///
- public VariationCoefficientNormalDistribution ModelFactorSubCriticalFlow { get; private set; }
+ public VariationCoefficientNormalDistribution ModelFactorSubCriticalFlow { get; }
///
/// Gets the model factor for collision load.
///
- public VariationCoefficientNormalDistribution ModelFactorCollisionLoad { get; private set; }
+ public VariationCoefficientNormalDistribution ModelFactorCollisionLoad { get; }
///
/// Gets the model factor for load effect.
///
- public NormalDistribution ModelFactorLoadEffect { get; private set; }
+ public NormalDistribution ModelFactorLoadEffect { get; }
///
/// Gets the model factor for incoming flow volume.
///
- public RoundedDouble ModelFactorInflowVolume { get; private set; }
+ public RoundedDouble ModelFactorInflowVolume { get; }
///
/// Gets the modification factor for wave slowly varying pressure component.
///
- public RoundedDouble ModificationFactorWavesSlowlyVaryingPressureComponent { get; private set; }
+ public RoundedDouble ModificationFactorWavesSlowlyVaryingPressureComponent { get; }
///
/// Gets the modification factor for waves dynamic or impulsive pressure component.
///
- public RoundedDouble ModificationFactorDynamicOrImpulsivePressureComponent { get; private set; }
+ public RoundedDouble ModificationFactorDynamicOrImpulsivePressureComponent { get; }
#endregion
@@ -151,12 +151,12 @@
///
/// Gets the N of the Rayleigh-N distribution for wave ratio max H.
///
- public RoundedDouble WaveRatioMaxHN { get; private set; }
+ public RoundedDouble WaveRatioMaxHN { get; }
///
/// Gets the standard deviation of the Rayleigh-N distribution for wave ratio max H.
///
- public RoundedDouble WaveRatioMaxHStandardDeviation { get; private set; }
+ public RoundedDouble WaveRatioMaxHStandardDeviation { get; }
#endregion
}
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs
===================================================================
diff -u -r638081278e33e132e3ffedd52fff0d6c00ab4728 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision 638081278e33e132e3ffedd52fff0d6c00ab4728)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanism.cs (.../StabilityPointStructuresFailureMechanism.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -63,17 +63,17 @@
///
/// Gets the general stability point structures calculation input parameters that apply to each calculation.
///
- public GeneralStabilityPointStructuresInput GeneralInput { get; private set; }
+ public GeneralStabilityPointStructuresInput GeneralInput { get; }
///
/// Gets the available stability point structures for this instance.
///
- public StructureCollection StabilityPointStructures { get; private set; }
+ public StructureCollection StabilityPointStructures { get; }
///
/// Gets the available foreshore profiles for this instance.
///
- public ForeshoreProfileCollection ForeshoreProfiles { get; private set; }
+ public ForeshoreProfileCollection ForeshoreProfiles { get; }
public CalculationGroup CalculationsGroup { get; }
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresScenariosContext.cs
===================================================================
diff -u -rff948d4633181ead2677ab35467a93b4118c6751 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresScenariosContext.cs (.../StabilityPointStructuresScenariosContext.cs) (revision ff948d4633181ead2677ab35467a93b4118c6751)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PresentationObjects/StabilityPointStructuresScenariosContext.cs (.../StabilityPointStructuresScenariosContext.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -52,6 +52,6 @@
///
/// The parent failure mechanism of the calculation group.
///
- public StabilityPointStructuresFailureMechanism ParentFailureMechanism { get; private set; }
+ public StabilityPointStructuresFailureMechanism ParentFailureMechanism { get; }
}
}
\ No newline at end of file
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/Ringtoets.StabilityPointStructures.Service.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/Ringtoets.StabilityPointStructures.Service.csproj (.../Ringtoets.StabilityPointStructures.Service.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/Ringtoets.StabilityPointStructures.Service.csproj (.../Ringtoets.StabilityPointStructures.Service.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -31,10 +31,6 @@
prompt
-
- ..\..\..\..\packages\log4net.2.0.4\lib\net40-full\log4net.dll
- True
-
@@ -58,7 +54,6 @@
Copying.licenseheader
-
@@ -76,11 +71,6 @@
Ringtoets.Common.Forms
False
-
- {52BA7627-CBAB-4209-BE77-3B5F31378277}
- Ringtoets.Common.IO
- False
-
{D951D6DA-FE83-4920-9FDB-63BF96480B54}
Ringtoets.Common.Service
Fisheye: Tag 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb refers to a dead (removed) revision in file `Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/packages.config'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Ringtoets.StabilityPointStructures.Forms.Test.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Ringtoets.StabilityPointStructures.Forms.Test.csproj (.../Ringtoets.StabilityPointStructures.Forms.Test.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Ringtoets.StabilityPointStructures.Forms.Test.csproj (.../Ringtoets.StabilityPointStructures.Forms.Test.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -90,10 +90,6 @@
{30E4C2AE-719E-4D70-9FA9-668A9767FBFA}
Core.Common.Gui
-
- {F49BD8B2-332A-4C91-A196-8CCE0A2C7D98}
- Core.Common.Utils
-
{D749EE4C-CE50-4C17-BF01-9A953028C126}
Core.Common.TestUtil
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs
===================================================================
diff -u -rd491788b870f9a9d2e08c93b52777f613809a133 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs (.../StabilityPointStructuresFailureMechanismResultViewTest.cs) (revision d491788b870f9a9d2e08c93b52777f613809a133)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismResultViewTest.cs (.../StabilityPointStructuresFailureMechanismResultViewTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -278,7 +278,7 @@
Assert.AreEqual("-", cells[assessmentLayerTwoAIndex].FormattedValue);
Assert.AreEqual(ProbabilityFormattingHelper.Format(result1.AssessmentLayerThree),
- cells[assessmentLayerThreeIndex].FormattedValue);
+ cells[assessmentLayerThreeIndex].FormattedValue);
DataGridViewTestHelper.AssertCellIsDisabled(cells[assessmentLayerTwoAIndex]);
DataGridViewTestHelper.AssertCellIsDisabled(cells[assessmentLayerThreeIndex]);
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/ImportInfos/StabilityPointStructuresContextImportInfoTest.cs
===================================================================
diff -u -rb9588439685292e10bcf3a4fcebfc187fd7bd03e -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/ImportInfos/StabilityPointStructuresContextImportInfoTest.cs (.../StabilityPointStructuresContextImportInfoTest.cs) (revision b9588439685292e10bcf3a4fcebfc187fd7bd03e)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/ImportInfos/StabilityPointStructuresContextImportInfoTest.cs (.../StabilityPointStructuresContextImportInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -43,7 +43,7 @@
namespace Ringtoets.StabilityPointStructures.Plugin.Test.ImportInfos
{
[TestFixture]
- public class StabilityPointStructuresContextImportInfoTest :NUnitFormTest
+ public class StabilityPointStructuresContextImportInfoTest : NUnitFormTest
{
[Test]
public void CreateFileImporter_Always_ReturnFileImporter()
@@ -267,7 +267,7 @@
{
plugin.Gui = gui;
ImportInfo importInfo = GetImportInfo(plugin);
-
+
// Call
bool updatesVerified = importInfo.VerifyUpdates(context);
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/PropertyInfos/StabilityPointStructureCollectionPropertyInfoTest.cs
===================================================================
diff -u -rb3cd93a57114ffa27d177cabb8e4635dfc71955c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/PropertyInfos/StabilityPointStructureCollectionPropertyInfoTest.cs (.../StabilityPointStructureCollectionPropertyInfoTest.cs) (revision b3cd93a57114ffa27d177cabb8e4635dfc71955c)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/PropertyInfos/StabilityPointStructureCollectionPropertyInfoTest.cs (.../StabilityPointStructureCollectionPropertyInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -82,4 +82,4 @@
mocks.VerifyAll();
}
}
-}
+}
\ No newline at end of file
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationContextTreeNodeInfoTest.cs
===================================================================
diff -u -rdcc94dbcc481ef9f6f83308b82096f85f9cb6f01 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationContextTreeNodeInfoTest.cs) (revision dcc94dbcc481ef9f6f83308b82096f85f9cb6f01)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationContextTreeNodeInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -38,7 +38,6 @@
using Ringtoets.Common.Data;
using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.Calculation;
-using Ringtoets.Common.Data.Contribution;
using Ringtoets.Common.Data.FailureMechanism;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.Structures;
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs
===================================================================
diff -u -rdcc94dbcc481ef9f6f83308b82096f85f9cb6f01 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision dcc94dbcc481ef9f6f83308b82096f85f9cb6f01)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -39,7 +39,6 @@
using Rhino.Mocks;
using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.Calculation;
-using Ringtoets.Common.Data.Contribution;
using Ringtoets.Common.Data.FailureMechanism;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.Structures;
@@ -84,26 +83,6 @@
private MockRepository mocks;
private StabilityPointStructuresPlugin plugin;
- public override void Setup()
- {
- mocks = new MockRepository();
- gui = mocks.Stub();
- plugin = new StabilityPointStructuresPlugin
- {
- Gui = gui
- };
-
- info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(StabilityPointStructuresCalculationGroupContext));
- }
-
- public override void TearDown()
- {
- plugin.Dispose();
- mocks.VerifyAll();
-
- base.TearDown();
- }
-
[Test]
public void Initialized_Always_ExpectedPropertiesSet()
{
@@ -1772,6 +1751,26 @@
CollectionAssert.DoesNotContain(parentGroup.Children, group);
}
+ public override void Setup()
+ {
+ mocks = new MockRepository();
+ gui = mocks.Stub();
+ plugin = new StabilityPointStructuresPlugin
+ {
+ Gui = gui
+ };
+
+ info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(StabilityPointStructuresCalculationGroupContext));
+ }
+
+ public override void TearDown()
+ {
+ plugin.Dispose();
+ mocks.VerifyAll();
+
+ base.TearDown();
+ }
+
private static void ChangeStructure(StabilityPointStructure structure)
{
structure.CopyProperties(new StabilityPointStructure(
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs
===================================================================
diff -u -rdcc94dbcc481ef9f6f83308b82096f85f9cb6f01 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision dcc94dbcc481ef9f6f83308b82096f85f9cb6f01)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -36,8 +36,6 @@
using Rhino.Mocks;
using Ringtoets.Common.Data;
using Ringtoets.Common.Data.AssessmentSection;
-using Ringtoets.Common.Data.Contribution;
-using Ringtoets.Common.Data.FailureMechanism;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs
===================================================================
diff -u -r71d8173532c9c038e25caf03e296beb8e8f9cbe8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs (.../StabilityPointStructuresDataSynchronizationServiceTest.cs) (revision 71d8173532c9c038e25caf03e296beb8e8f9cbe8)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs (.../StabilityPointStructuresDataSynchronizationServiceTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,7 +27,6 @@
using NUnit.Framework;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.FailureMechanism;
-using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.Structures;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Common.Service;
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs
===================================================================
diff -u -r94f2ec1496623ae488b567f883e66b4d26243441 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs (.../GeneralStabilityStoneCoverWaveConditionsInput.cs) (revision 94f2ec1496623ae488b567f883e66b4d26243441)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/GeneralStabilityStoneCoverWaveConditionsInput.cs (.../GeneralStabilityStoneCoverWaveConditionsInput.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -40,11 +40,11 @@
///
/// Gets the general input parameter used in wave conditions calculations for blocks.
///
- public GeneralWaveConditionsInput GeneralBlocksWaveConditionsInput { get; private set; }
+ public GeneralWaveConditionsInput GeneralBlocksWaveConditionsInput { get; }
///
/// Gets the general input parameter used in wave conditions calculations for columns.
///
- public GeneralWaveConditionsInput GeneralColumnsWaveConditionsInput { get; private set; }
+ public GeneralWaveConditionsInput GeneralColumnsWaveConditionsInput { get; }
}
}
\ No newline at end of file
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanism.cs
===================================================================
diff -u -red4b032b9903f394deb9691c2c39a9f2122ab0f5 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanism.cs (.../StabilityStoneCoverFailureMechanism.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Data/StabilityStoneCoverFailureMechanism.cs (.../StabilityStoneCoverFailureMechanism.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -60,7 +60,7 @@
///
/// Gets the general stability stone cover wave conditions input parameters that apply to each calculation.
///
- public GeneralStabilityStoneCoverWaveConditionsInput GeneralInput { get; private set; }
+ public GeneralStabilityStoneCoverWaveConditionsInput GeneralInput { get; }
///
/// Gets the container of all wave conditions calculations.
@@ -70,7 +70,7 @@
///
/// Gets the available foreshore profiles for this instance.
///
- public ForeshoreProfileCollection ForeshoreProfiles { get; private set; }
+ public ForeshoreProfileCollection ForeshoreProfiles { get; }
public IEnumerable SectionResults
{
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContext.cs
===================================================================
diff -u -rb7e9a2c0ff0bb20209a80f5d96ffda1921ec724c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContext.cs (.../StabilityStoneCoverWaveConditionsCalculationContext.cs) (revision b7e9a2c0ff0bb20209a80f5d96ffda1921ec724c)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContext.cs (.../StabilityStoneCoverWaveConditionsCalculationContext.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -62,7 +62,7 @@
{
return base.Equals(other)
&& other is StabilityStoneCoverWaveConditionsCalculationContext
- && ReferenceEquals(Parent, ((StabilityStoneCoverWaveConditionsCalculationContext)other).Parent);
+ && ReferenceEquals(Parent, ((StabilityStoneCoverWaveConditionsCalculationContext) other).Parent);
}
public override bool Equals(object obj)
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Exporters/StabilityStoneCoverWaveConditionsExporter.cs
===================================================================
diff -u -r2057d3372084602a2d959db2e33dcf81de971a73 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Exporters/StabilityStoneCoverWaveConditionsExporter.cs (.../StabilityStoneCoverWaveConditionsExporter.cs) (revision 2057d3372084602a2d959db2e33dcf81de971a73)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Exporters/StabilityStoneCoverWaveConditionsExporter.cs (.../StabilityStoneCoverWaveConditionsExporter.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -23,7 +23,6 @@
using System.Collections.Generic;
using System.Linq;
using Core.Common.IO.Exceptions;
-using Ringtoets.Revetment.IO;
using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.StabilityStoneCover.Data;
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Ringtoets.StabilityStoneCover.IO.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Ringtoets.StabilityStoneCover.IO.csproj (.../Ringtoets.StabilityStoneCover.IO.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.IO/Ringtoets.StabilityStoneCover.IO.csproj (.../Ringtoets.StabilityStoneCover.IO.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -33,7 +33,6 @@
-
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContextTest.cs
===================================================================
diff -u -r1135c8dff2d97eb3b8f17ada1f96bc068ac06bc2 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContextTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTest.cs) (revision 1135c8dff2d97eb3b8f17ada1f96bc068ac06bc2)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsCalculationContextTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,7 +27,6 @@
using Ringtoets.Common.Forms.PresentationObjects;
using Ringtoets.StabilityStoneCover.Data;
using Ringtoets.StabilityStoneCover.Forms.PresentationObjects;
-using Is = Rhino.Mocks.Constraints.Is;
namespace Ringtoets.StabilityStoneCover.Forms.Test.PresentationObjects
{
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PresentationObjects/StabilityStoneCoverWaveConditionsInputContextTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,8 +27,8 @@
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.StabilityStoneCover.Data;
using Ringtoets.StabilityStoneCover.Forms.PresentationObjects;
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsInputContextPropertiesTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsInputContextPropertiesTest.cs (.../StabilityStoneCoverWaveConditionsInputContextPropertiesTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsInputContextPropertiesTest.cs (.../StabilityStoneCoverWaveConditionsInputContextPropertiesTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,8 +27,8 @@
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Forms.PropertyClasses;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.StabilityStoneCover.Forms.PresentationObjects;
using Ringtoets.StabilityStoneCover.Forms.PropertyClasses;
@@ -64,7 +64,7 @@
var context = new StabilityStoneCoverWaveConditionsInputContext(
new WaveConditionsInput(),
- new TestWaveConditionsCalculation(),
+ new TestWaveConditionsCalculation(),
Enumerable.Empty(),
assessmentSection);
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsOutputPropertiesTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsOutputPropertiesTest.cs (.../StabilityStoneCoverWaveConditionsOutputPropertiesTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/PropertyClasses/StabilityStoneCoverWaveConditionsOutputPropertiesTest.cs (.../StabilityStoneCoverWaveConditionsOutputPropertiesTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,8 +27,8 @@
using NUnit.Framework;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
-using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.StabilityStoneCover.Data;
using Ringtoets.StabilityStoneCover.Forms.PropertyClasses;
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/StabilityStoneCoverCalculationConfigurationHelperTest.cs
===================================================================
diff -u -r94f2ec1496623ae488b567f883e66b4d26243441 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/StabilityStoneCoverCalculationConfigurationHelperTest.cs (.../StabilityStoneCoverCalculationConfigurationHelperTest.cs) (revision 94f2ec1496623ae488b567f883e66b4d26243441)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/StabilityStoneCoverCalculationConfigurationHelperTest.cs (.../StabilityStoneCoverCalculationConfigurationHelperTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -96,7 +96,7 @@
Assert.AreEqual(locations[0], firstCalculation.InputParameters.HydraulicBoundaryLocation);
var secondCalculation = (StabilityStoneCoverWaveConditionsCalculation) calculationBases.ElementAt(1);
- Assert.AreEqual(string.Format("{0} (1)", name), secondCalculation.Name);
+ Assert.AreEqual($"{name} (1)", secondCalculation.Name);
Assert.AreSame(locations[1], secondCalculation.InputParameters.HydraulicBoundaryLocation);
}
@@ -124,11 +124,11 @@
// Assert
Assert.AreEqual(3, calculationBases.Count);
var firstCalculation = (StabilityStoneCoverWaveConditionsCalculation) calculationBases.ElementAt(1);
- Assert.AreEqual(string.Format("{0} (1)", name), firstCalculation.Name);
+ Assert.AreEqual($"{name} (1)", firstCalculation.Name);
Assert.AreEqual(locations[0], firstCalculation.InputParameters.HydraulicBoundaryLocation);
var secondCalculation = (StabilityStoneCoverWaveConditionsCalculation) calculationBases.ElementAt(2);
- Assert.AreEqual(string.Format("{0} (2)", name), secondCalculation.Name);
+ Assert.AreEqual($"{name} (2)", secondCalculation.Name);
Assert.AreSame(locations[1], secondCalculation.InputParameters.HydraulicBoundaryLocation);
}
}
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/ExportInfos/StabilityStoneCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs
===================================================================
diff -u -r8b60c9e846480f3ffeeb263bfea5d3367bf6bee3 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/ExportInfos/StabilityStoneCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs) (revision 8b60c9e846480f3ffeeb263bfea5d3367bf6bee3)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/ExportInfos/StabilityStoneCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -28,8 +28,8 @@
using Rhino.Mocks;
using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.Calculation;
-using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.StabilityStoneCover.Data;
using Ringtoets.StabilityStoneCover.Forms.PresentationObjects;
using CoreCommonGuiResources = Core.Common.Gui.Properties.Resources;
Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs
===================================================================
diff -u -r7371a70ed0751d341d41a7b951b780d286f83791 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 7371a70ed0751d341d41a7b951b780d286f83791)
+++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -797,8 +797,13 @@
var assessmentSection = mocks.Stub();
var failureMechanism = new StabilityStoneCoverFailureMechanism();
var parent = new CalculationGroup();
- var calculation = new StabilityStoneCoverWaveConditionsCalculation();
- calculation.InputParameters.ForeshoreProfile = new TestForeshoreProfile();
+ var calculation = new StabilityStoneCoverWaveConditionsCalculation
+ {
+ InputParameters =
+ {
+ ForeshoreProfile = new TestForeshoreProfile()
+ }
+ };
var nodeData = new StabilityStoneCoverWaveConditionsCalculationContext(calculation,
parent,
@@ -838,8 +843,13 @@
var foreshoreProfileInput = new TestForeshoreProfile();
var parent = new CalculationGroup();
- var calculation = new StabilityStoneCoverWaveConditionsCalculation();
- calculation.InputParameters.ForeshoreProfile = foreshoreProfileInput;
+ var calculation = new StabilityStoneCoverWaveConditionsCalculation
+ {
+ InputParameters =
+ {
+ ForeshoreProfile = foreshoreProfileInput
+ }
+ };
TestForeshoreProfile.ChangeBreakWaterProperties(foreshoreProfileInput);
var nodeData = new StabilityStoneCoverWaveConditionsCalculationContext(calculation,
Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs
===================================================================
diff -u -red4b032b9903f394deb9691c2c39a9f2122ab0f5 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs (.../WaveImpactAsphaltCoverFailureMechanism.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5)
+++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Data/WaveImpactAsphaltCoverFailureMechanism.cs (.../WaveImpactAsphaltCoverFailureMechanism.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -61,12 +61,12 @@
///
/// Gets the available foreshore profiles for this instance.
///
- public ForeshoreProfileCollection ForeshoreProfiles { get; private set; }
+ public ForeshoreProfileCollection ForeshoreProfiles { get; }
///
/// Gets the general wave conditions input parameters that apply to each calculation.
///
- public GeneralWaveConditionsInput GeneralInput { get; private set; }
+ public GeneralWaveConditionsInput GeneralInput { get; }
///
/// Gets the container of all wave conditions calculations.
Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Exporters/WaveImpactAsphaltCoverWaveConditionsExporter.cs
===================================================================
diff -u -r2057d3372084602a2d959db2e33dcf81de971a73 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Exporters/WaveImpactAsphaltCoverWaveConditionsExporter.cs (.../WaveImpactAsphaltCoverWaveConditionsExporter.cs) (revision 2057d3372084602a2d959db2e33dcf81de971a73)
+++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Exporters/WaveImpactAsphaltCoverWaveConditionsExporter.cs (.../WaveImpactAsphaltCoverWaveConditionsExporter.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -23,7 +23,6 @@
using System.Collections.Generic;
using System.Linq;
using Core.Common.IO.Exceptions;
-using Ringtoets.Revetment.IO;
using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.WaveImpactAsphaltCover.Data;
Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Ringtoets.WaveImpactAsphaltCover.IO.csproj
===================================================================
diff -u -r04f5526f955c773d4987e820e2aca2614dfbd8d8 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Ringtoets.WaveImpactAsphaltCover.IO.csproj (.../Ringtoets.WaveImpactAsphaltCover.IO.csproj) (revision 04f5526f955c773d4987e820e2aca2614dfbd8d8)
+++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.IO/Ringtoets.WaveImpactAsphaltCover.IO.csproj (.../Ringtoets.WaveImpactAsphaltCover.IO.csproj) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -33,7 +33,6 @@
-
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PresentationObjects/WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,8 +27,8 @@
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PresentationObjects;
using Ringtoets.WaveImpactAsphaltCover.Data;
using Ringtoets.WaveImpactAsphaltCover.Forms.PresentationObjects;
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsInputContextPropertiesTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsInputContextPropertiesTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextPropertiesTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsInputContextPropertiesTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextPropertiesTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -27,8 +27,8 @@
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Forms.PropertyClasses;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.WaveImpactAsphaltCover.Forms.PresentationObjects;
using Ringtoets.WaveImpactAsphaltCover.Forms.PropertyClasses;
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsOutputPropertiesTest.cs
===================================================================
diff -u -rac5d52dfa559def14c89499c0f819754ed3b446c -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsOutputPropertiesTest.cs (.../WaveImpactAsphaltCoverWaveConditionsOutputPropertiesTest.cs) (revision ac5d52dfa559def14c89499c0f819754ed3b446c)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/PropertyClasses/WaveImpactAsphaltCoverWaveConditionsOutputPropertiesTest.cs (.../WaveImpactAsphaltCoverWaveConditionsOutputPropertiesTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -28,8 +28,8 @@
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.TestUtil;
using Ringtoets.Revetment.Data;
-using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.Forms.PropertyClasses;
using Ringtoets.WaveImpactAsphaltCover.Data;
using Ringtoets.WaveImpactAsphaltCover.Forms.PropertyClasses;
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/WaveImpactAsphaltCoverWaveConditionsCalculationConfigurationHelperTest.cs
===================================================================
diff -u -r08d25a2d4cd349395730ef39d3abf2cc51c30508 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/WaveImpactAsphaltCoverWaveConditionsCalculationConfigurationHelperTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationConfigurationHelperTest.cs) (revision 08d25a2d4cd349395730ef39d3abf2cc51c30508)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/WaveImpactAsphaltCoverWaveConditionsCalculationConfigurationHelperTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationConfigurationHelperTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -96,7 +96,7 @@
Assert.AreEqual(locations[0], firstCalculation.InputParameters.HydraulicBoundaryLocation);
var secondCalculation = (WaveImpactAsphaltCoverWaveConditionsCalculation) calculationBases.ElementAt(1);
- Assert.AreEqual(string.Format("{0} (1)", name), secondCalculation.Name);
+ Assert.AreEqual($"{name} (1)", secondCalculation.Name);
Assert.AreSame(locations[1], secondCalculation.InputParameters.HydraulicBoundaryLocation);
}
@@ -124,11 +124,11 @@
// Assert
Assert.AreEqual(3, calculationBases.Count);
var firstCalculation = (WaveImpactAsphaltCoverWaveConditionsCalculation) calculationBases.ElementAt(1);
- Assert.AreEqual(string.Format("{0} (1)", name), firstCalculation.Name);
+ Assert.AreEqual($"{name} (1)", firstCalculation.Name);
Assert.AreEqual(locations[0], firstCalculation.InputParameters.HydraulicBoundaryLocation);
var secondCalculation = (WaveImpactAsphaltCoverWaveConditionsCalculation) calculationBases.ElementAt(2);
- Assert.AreEqual(string.Format("{0} (2)", name), secondCalculation.Name);
+ Assert.AreEqual($"{name} (2)", secondCalculation.Name);
Assert.AreSame(locations[1], secondCalculation.InputParameters.HydraulicBoundaryLocation);
}
}
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs
===================================================================
diff -u -r8b60c9e846480f3ffeeb263bfea5d3367bf6bee3 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs) (revision 8b60c9e846480f3ffeeb263bfea5d3367bf6bee3)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationGroupContextWaveConditionsExportInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -28,8 +28,8 @@
using Rhino.Mocks;
using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.Calculation;
-using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.Revetment.Data.TestUtil;
+using Ringtoets.Revetment.IO.WaveConditions;
using Ringtoets.WaveImpactAsphaltCover.Data;
using Ringtoets.WaveImpactAsphaltCover.Forms.PresentationObjects;
using CoreCommonGuiResources = Core.Common.Gui.Properties.Resources;
@@ -165,14 +165,14 @@
var failureMechanism = new WaveImpactAsphaltCoverFailureMechanism();
var calculationGroup = new CalculationGroup();
- WaveImpactAsphaltCoverWaveConditionsOutput WaveImpactAsphaltCoverWaveConditionsOutput = null;
+ WaveImpactAsphaltCoverWaveConditionsOutput waveImpactAsphaltCoverWaveConditionsOutput = null;
if (hasOutput)
{
var output = new[]
{
new TestWaveConditionsOutput()
};
- WaveImpactAsphaltCoverWaveConditionsOutput = new WaveImpactAsphaltCoverWaveConditionsOutput(output);
+ waveImpactAsphaltCoverWaveConditionsOutput = new WaveImpactAsphaltCoverWaveConditionsOutput(output);
}
calculationGroup.Children.Add(
new CalculationGroup
@@ -181,7 +181,7 @@
{
new WaveImpactAsphaltCoverWaveConditionsCalculation
{
- Output = WaveImpactAsphaltCoverWaveConditionsOutput
+ Output = waveImpactAsphaltCoverWaveConditionsOutput
}
}
});
Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs
===================================================================
diff -u -r7371a70ed0751d341d41a7b951b780d286f83791 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 7371a70ed0751d341d41a7b951b780d286f83791)
+++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/TreeNodeInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextTreeNodeInfoTest.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -752,8 +752,13 @@
var assessmentSection = mocks.Stub();
var failureMechanism = new WaveImpactAsphaltCoverFailureMechanism();
var parent = new CalculationGroup();
- var calculation = new WaveImpactAsphaltCoverWaveConditionsCalculation();
- calculation.InputParameters.ForeshoreProfile = new TestForeshoreProfile();
+ var calculation = new WaveImpactAsphaltCoverWaveConditionsCalculation
+ {
+ InputParameters =
+ {
+ ForeshoreProfile = new TestForeshoreProfile()
+ }
+ };
var nodeData = new WaveImpactAsphaltCoverWaveConditionsCalculationContext(calculation,
parent,
@@ -793,8 +798,13 @@
var foreshoreProfileInput = new TestForeshoreProfile();
var parent = new CalculationGroup();
- var calculation = new WaveImpactAsphaltCoverWaveConditionsCalculation();
- calculation.InputParameters.ForeshoreProfile = foreshoreProfileInput;
+ var calculation = new WaveImpactAsphaltCoverWaveConditionsCalculation
+ {
+ InputParameters =
+ {
+ ForeshoreProfile = foreshoreProfileInput
+ }
+ };
TestForeshoreProfile.ChangeBreakWaterProperties(foreshoreProfileInput);
var nodeData = new WaveImpactAsphaltCoverWaveConditionsCalculationContext(calculation,