Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -re903fc0fcf884defda3849c2686dc0c2b9b71ddb -rdeeb111cd648c41702c810d6b4f13ecc67098ccb --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision e903fc0fcf884defda3849c2686dc0c2b9b71ddb) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision deeb111cd648c41702c810d6b4f13ecc67098ccb) @@ -101,7 +101,7 @@ } [Test] - public void AssembleSimpleAssessment_CalculatorThrowsExceptions_ThrowsAssemblyFactoryException() + public void AssembleSimpleAssessment_CalculatorThrowsExceptions_ThrowsAssemblyException() { // Setup FailureMechanismSection failureMechanismSection = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); @@ -117,7 +117,7 @@ TestDelegate call = () => StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.AssembleSimpleAssessment(sectionResult); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Exception innerException = exception.InnerException; Assert.IsInstanceOf(innerException); Assert.AreEqual(innerException.Message, exception.Message); @@ -259,7 +259,7 @@ } [Test] - public void AssembleDetailedAssembly_CalculatorThrowsExceptions_ThrowsAssemblyFactoryException() + public void AssembleDetailedAssembly_CalculatorThrowsExceptions_ThrowsAssemblyException() { // Setup var random = new Random(21); @@ -290,7 +290,7 @@ assessmentSection); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Exception innerException = exception.InnerException; Assert.IsInstanceOf(innerException); Assert.AreEqual(innerException.Message, exception.Message);