Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationAssessmentSectionCategoryType.cs
===================================================================
diff -u
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationAssessmentSectionCategoryType.cs (revision 0)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationAssessmentSectionCategoryType.cs (revision 9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089)
@@ -0,0 +1,49 @@
+// Copyright (C) Stichting Deltares 2017. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+namespace Ringtoets.Revetment.IO.Configurations
+{
+ ///
+ /// Enum defining the possible assessment section category type value in a read wave conditions calculation.
+ ///
+ public enum ConfigurationAssessmentSectionCategoryType
+ {
+ ///
+ /// The factorized signaling norm.
+ ///
+ FactorizedSignalingNorm = 1,
+
+ ///
+ /// The signaling norm.
+ ///
+ SignalingNorm = 2,
+
+ ///
+ /// The lower limit norm.
+ ///
+ LowerLimitNorm = 3,
+
+ ///
+ /// The factorized lower limit norm.
+ ///
+ FactorizedLowerLimitNorm = 4
+ }
+}
\ No newline at end of file
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj
===================================================================
diff -u -rac96d7c315129af851634ed5a4a6800b59ede718 -r9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision ac96d7c315129af851634ed5a4a6800b59ede718)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision 9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089)
@@ -17,6 +17,7 @@
+
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationAssessmentSectionCategoryTypeTest.cs
===================================================================
diff -u
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationAssessmentSectionCategoryTypeTest.cs (revision 0)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationAssessmentSectionCategoryTypeTest.cs (revision 9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089)
@@ -0,0 +1,54 @@
+// Copyright (C) Stichting Deltares 2017. All rights reserved.
+//
+// This file is part of Ringtoets.
+//
+// Ringtoets is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using System.Collections.Generic;
+using Core.Common.TestUtil;
+using NUnit.Framework;
+using Ringtoets.Revetment.IO.Configurations;
+
+namespace Ringtoets.Revetment.IO.Test.Configurations
+{
+ [TestFixture]
+ public class ConfigurationAssessmentSectionCategoryTypeTest : EnumValuesTestFixture
+ {
+ protected override IDictionary ExpectedValueForEnumValues
+ {
+ get
+ {
+ return new Dictionary
+ {
+ {
+ ConfigurationAssessmentSectionCategoryType.FactorizedSignalingNorm, 1
+ },
+ {
+ ConfigurationAssessmentSectionCategoryType.SignalingNorm, 2
+ },
+ {
+ ConfigurationAssessmentSectionCategoryType.LowerLimitNorm, 3
+ },
+ {
+ ConfigurationAssessmentSectionCategoryType.FactorizedLowerLimitNorm, 4
+ }
+ };
+ }
+ }
+ }
+}
\ No newline at end of file
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj
===================================================================
diff -u -r63fc151e9cf722527465c1eddfa6567a90feb5e6 -r9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision 63fc151e9cf722527465c1eddfa6567a90feb5e6)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision 9d30a6db5d01e1bec5d3f107b4a3c6263a2c3089)
@@ -16,6 +16,7 @@
+