Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationFailureMechanismCategoryType.cs
===================================================================
diff -u
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationFailureMechanismCategoryType.cs (revision 0)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Configurations/ConfigurationFailureMechanismCategoryType.cs (revision 2774fdb75c48c15ebc66017984d2cc460075151d)
@@ -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.
+
+namespace Ringtoets.Revetment.IO.Configurations
+{
+ ///
+ /// Enum defining the possible failure mechanism category type value in a read wave conditions calculation.
+ ///
+ public enum ConfigurationFailureMechanismCategoryType
+ {
+ ///
+ /// The mechanism specific factorized signaling norm.
+ ///
+ MechanismSpecificFactorizedSignalingNorm = 1,
+
+ ///
+ /// The mechanism specific signaling norm.
+ ///
+ MechanismSpecificSignalingNorm = 2,
+
+ ///
+ /// The mechanism specific lower limit norm.
+ ///
+ MechanismSpecificLowerLimitNorm = 3,
+
+ ///
+ /// The lower limit norm.
+ ///
+ LowerLimitNorm = 4,
+
+ ///
+ /// The factorized lower limit norm.
+ ///
+ FactorizedLowerLimitNorm = 5
+ }
+}
\ No newline at end of file
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj
===================================================================
diff -u -rc950780c09c2ade2c049dbc6a263ba55c4cf7691 -r2774fdb75c48c15ebc66017984d2cc460075151d
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision c950780c09c2ade2c049dbc6a263ba55c4cf7691)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/Ringtoets.Revetment.IO.csproj (.../Ringtoets.Revetment.IO.csproj) (revision 2774fdb75c48c15ebc66017984d2cc460075151d)
@@ -20,6 +20,7 @@
+
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationFailureMechanismCategoryTypeTest.cs
===================================================================
diff -u
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationFailureMechanismCategoryTypeTest.cs (revision 0)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/ConfigurationFailureMechanismCategoryTypeTest.cs (revision 2774fdb75c48c15ebc66017984d2cc460075151d)
@@ -0,0 +1,57 @@
+// 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 ConfigurationFailureMechanismCategoryTypeTest : EnumValuesTestFixture
+ {
+ protected override IDictionary ExpectedValueForEnumValues
+ {
+ get
+ {
+ return new Dictionary
+ {
+ {
+ ConfigurationFailureMechanismCategoryType.MechanismSpecificFactorizedSignalingNorm, 1
+ },
+ {
+ ConfigurationFailureMechanismCategoryType.MechanismSpecificSignalingNorm, 2
+ },
+ {
+ ConfigurationFailureMechanismCategoryType.MechanismSpecificLowerLimitNorm, 3
+ },
+ {
+ ConfigurationFailureMechanismCategoryType.LowerLimitNorm, 4
+ },
+ {
+ ConfigurationFailureMechanismCategoryType.FactorizedLowerLimitNorm, 5
+ }
+ };
+ }
+ }
+ }
+}
\ No newline at end of file
Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj
===================================================================
diff -u -rc950780c09c2ade2c049dbc6a263ba55c4cf7691 -r2774fdb75c48c15ebc66017984d2cc460075151d
--- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision c950780c09c2ade2c049dbc6a263ba55c4cf7691)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Ringtoets.Revetment.IO.Test.csproj (.../Ringtoets.Revetment.IO.Test.csproj) (revision 2774fdb75c48c15ebc66017984d2cc460075151d)
@@ -19,6 +19,7 @@
+