Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRow.cs =================================================================== diff -u -r5157c0cfbc606566e79c509dd46f9b6f67c69d84 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRow.cs (.../MacroStabilityOutwardsSectionResultRow.cs) (revision 5157c0cfbc606566e79c509dd46f9b6f67c69d84) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRow.cs (.../MacroStabilityOutwardsSectionResultRow.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -29,7 +29,6 @@ using Ringtoets.Common.Forms.TypeConverters; using Ringtoets.Common.Forms.Views; using Ringtoets.Common.Primitives; -using Ringtoets.Integration.Data.Assembly; using Ringtoets.Integration.Data.StandAlone; using Ringtoets.Integration.Data.StandAlone.AssemblyFactories; using Ringtoets.Integration.Data.StandAlone.SectionResults; @@ -254,8 +253,6 @@ /// /// Gets or sets the indicator whether the combined assembly should be overwritten by . /// - /// Thrown when - /// is a valid value, but unsupported. public bool UseManualAssemblyCategoryGroup { get @@ -272,8 +269,6 @@ /// /// Gets or sets the manually selected assembly category group. /// - /// Thrown when - /// is a valid value, but unsupported. public ManualFailureMechanismSectionAssemblyCategoryGroup ManualAssemblyCategoryGroup { get Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs =================================================================== diff -u -r155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision 155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -186,8 +186,6 @@ /// /// Gets or sets the indicator whether the combined assembly should be overwritten by . /// - /// Thrown when - /// is a valid value, but unsupported. public bool UseManualAssemblyCategoryGroup { get @@ -204,8 +202,6 @@ /// /// Gets or sets the manually selected assembly category group. /// - /// Thrown when - /// is a valid value, but unsupported. public ManualFailureMechanismSectionAssemblyCategoryGroup ManualAssemblyCategoryGroup { get Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs =================================================================== diff -u -r7067c14b776869db0ee508758b5ebed71b06045c -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision 7067c14b776869db0ee508758b5ebed71b06045c) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -150,8 +150,6 @@ /// /// Gets or sets the indicator whether the combined assembly should be overwritten by . /// - /// Thrown when - /// is a valid value, but unsupported. public bool UseManualAssemblyCategoryGroup { get Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRowTest.cs =================================================================== diff -u -r5157c0cfbc606566e79c509dd46f9b6f67c69d84 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRowTest.cs (.../MacroStabilityOutwardsSectionResultRowTest.cs) (revision 5157c0cfbc606566e79c509dd46f9b6f67c69d84) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacroStabilityOutwardsSectionResultRowTest.cs (.../MacroStabilityOutwardsSectionResultRowTest.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -324,8 +324,7 @@ row.ManualAssemblyCategoryGroup = newValue; // Assert - ManualFailureMechanismSectionAssemblyCategoryGroup expectedCategoryGroup = newValue; - Assert.AreEqual(expectedCategoryGroup, result.ManualAssemblyCategoryGroup); + Assert.AreEqual(newValue, result.ManualAssemblyCategoryGroup); mocks.VerifyAll(); } } Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensions.cs =================================================================== diff -u -r5157c0cfbc606566e79c509dd46f9b6f67c69d84 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensions.cs (.../MacroStabilityOutwardsSectionResultEntityReadExtensions.cs) (revision 5157c0cfbc606566e79c509dd46f9b6f67c69d84) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensions.cs (.../MacroStabilityOutwardsSectionResultEntityReadExtensions.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -21,7 +21,6 @@ using System; using Ringtoets.Common.Primitives; -using Ringtoets.Integration.Data.Assembly; using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.Storage.Core.DbContext; Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MicrostabilitySectionResultEntityReadExtensions.cs =================================================================== diff -u -r155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MicrostabilitySectionResultEntityReadExtensions.cs (.../MicrostabilitySectionResultEntityReadExtensions.cs) (revision 155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/Read/MicrostabilitySectionResultEntityReadExtensions.cs (.../MicrostabilitySectionResultEntityReadExtensions.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -20,7 +20,6 @@ // All rights reserved. using System; -using Ringtoets.AssemblyTool.Data; using Ringtoets.Common.Primitives; using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.Storage.Core.DbContext; Index: Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/MacrostabilityOutwards/MacroStabilityOutwardsFailureMechanismSectionResultCreateExtensionsTest.cs =================================================================== diff -u -r5157c0cfbc606566e79c509dd46f9b6f67c69d84 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/MacrostabilityOutwards/MacroStabilityOutwardsFailureMechanismSectionResultCreateExtensionsTest.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultCreateExtensionsTest.cs) (revision 5157c0cfbc606566e79c509dd46f9b6f67c69d84) +++ Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/MacrostabilityOutwards/MacroStabilityOutwardsFailureMechanismSectionResultCreateExtensionsTest.cs (.../MacroStabilityOutwardsFailureMechanismSectionResultCreateExtensionsTest.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -24,7 +24,6 @@ using NUnit.Framework; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Primitives; -using Ringtoets.Integration.Data.Assembly; using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.Storage.Core.Create.MacroStabilityOutwards; using Ringtoets.Storage.Core.DbContext; Index: Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/Microstability/MicrostabilityFailureMechanismSectionResultCreateExtensionsTest.cs =================================================================== diff -u -r155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/Microstability/MicrostabilityFailureMechanismSectionResultCreateExtensionsTest.cs (.../MicrostabilityFailureMechanismSectionResultCreateExtensionsTest.cs) (revision 155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0) +++ Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Create/Microstability/MicrostabilityFailureMechanismSectionResultCreateExtensionsTest.cs (.../MicrostabilityFailureMechanismSectionResultCreateExtensionsTest.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -22,7 +22,6 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; -using Ringtoets.AssemblyTool.Data; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Primitives; using Ringtoets.Integration.Data.StandAlone.SectionResults; Index: Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensionsTest.cs =================================================================== diff -u -r5157c0cfbc606566e79c509dd46f9b6f67c69d84 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensionsTest.cs (.../MacroStabilityOutwardsSectionResultEntityReadExtensionsTest.cs) (revision 5157c0cfbc606566e79c509dd46f9b6f67c69d84) +++ Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MacroStabilityOutwards/MacroStabilityOutwardsSectionResultEntityReadExtensionsTest.cs (.../MacroStabilityOutwardsSectionResultEntityReadExtensionsTest.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -24,7 +24,6 @@ using NUnit.Framework; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Primitives; -using Ringtoets.Integration.Data.Assembly; using Ringtoets.Integration.Data.StandAlone.SectionResults; using Ringtoets.Storage.Core.DbContext; using Ringtoets.Storage.Core.Read.MacroStabilityOutwards; Index: Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MicrostabilitySectionResultEntityReadExtensionsTest.cs =================================================================== diff -u -r155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0 -rcd1a2e1df375f6dd1ac7739f6695ceea140e133c --- Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MicrostabilitySectionResultEntityReadExtensionsTest.cs (.../MicrostabilitySectionResultEntityReadExtensionsTest.cs) (revision 155b57bdd33a2432fb26c0aa89b27b4da0fbd1e0) +++ Ringtoets/Storage/test/Ringtoets.Storage.Core.Test/Read/MicrostabilitySectionResultEntityReadExtensionsTest.cs (.../MicrostabilitySectionResultEntityReadExtensionsTest.cs) (revision cd1a2e1df375f6dd1ac7739f6695ceea140e133c) @@ -22,7 +22,6 @@ using System; using Core.Common.TestUtil; using NUnit.Framework; -using Ringtoets.AssemblyTool.Data; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Primitives; using Ringtoets.Integration.Data.StandAlone.SectionResults;