Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ClosingStructures/ClosingStructuresFailureMechanismSectionResultCreateExtensionsTest.cs =================================================================== diff -u -rbcd1a835c8d39b06f4934b040d6ea45fa44b2ee5 -r560ea9f96409cc65f4666adf212a1c135c5e626f --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ClosingStructures/ClosingStructuresFailureMechanismSectionResultCreateExtensionsTest.cs (.../ClosingStructuresFailureMechanismSectionResultCreateExtensionsTest.cs) (revision bcd1a835c8d39b06f4934b040d6ea45fa44b2ee5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/ClosingStructures/ClosingStructuresFailureMechanismSectionResultCreateExtensionsTest.cs (.../ClosingStructuresFailureMechanismSectionResultCreateExtensionsTest.cs) (revision 560ea9f96409cc65f4666adf212a1c135c5e626f) @@ -40,7 +40,7 @@ public void Create_WithoutPersistenceRegistry_ThrowsArgumentNullException() { // Setup - var sectionResult = new ClosingStructuresFailureMechanismSectionResult(new TestFailureMechanismSection()); + var sectionResult = new StructuresFailureMechanismSectionResult(new TestFailureMechanismSection()); // Call TestDelegate test = () => sectionResult.Create(null); @@ -57,7 +57,7 @@ var assessmentLayerOneResult = random.NextEnumValue(); RoundedDouble assessmentLayerThreeResult = random.NextRoundedDouble(); - var sectionResult = new ClosingStructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) + var sectionResult = new StructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) { AssessmentLayerOne = assessmentLayerOneResult, AssessmentLayerThree = assessmentLayerThreeResult @@ -76,7 +76,7 @@ public void Create_WithNaNLevel3Result_ReturnsEntityWithExpectedResults() { // Setup - var sectionResult = new ClosingStructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) + var sectionResult = new StructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) { AssessmentLayerThree = RoundedDouble.NaN }; @@ -93,7 +93,7 @@ { // Setup var calculation = new StructuresCalculation(); - var sectionResult = new ClosingStructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) + var sectionResult = new StructuresFailureMechanismSectionResult(new TestFailureMechanismSection()) { Calculation = calculation };