Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/SurfaceLines/SurfaceLineExtensionsTest.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r459cba9f341765219abedb446c7fe4d0614ccb0e --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/SurfaceLines/SurfaceLineExtensionsTest.cs (.../SurfaceLineExtensionsTest.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/SurfaceLines/SurfaceLineExtensionsTest.cs (.../SurfaceLineExtensionsTest.cs) (revision 459cba9f341765219abedb446c7fe4d0614ccb0e) @@ -113,7 +113,7 @@ } [Test] - public void GetSingleReferenceLineIntersection_SurfaceLineNotOnReferenceLine_ThrowSurfaceLineTransformException() + public void GetSingleReferenceLineIntersection_SurfaceLineNotOnReferenceLine_ThrowImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -174,7 +174,7 @@ } [Test] - public void GetSingleReferenceLineIntersection_SurfaceLineIntersectsReferenceLineMultipleTimesInDifferentPoints_ThrowSurfaceLineTransformException() + public void GetSingleReferenceLineIntersection_SurfaceLineIntersectsReferenceLineMultipleTimesInDifferentPoints_ThrowImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacroStabilityInwardsSurfaceLineExtensionsTest.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r459cba9f341765219abedb446c7fe4d0614ccb0e --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacroStabilityInwardsSurfaceLineExtensionsTest.cs (.../MacroStabilityInwardsSurfaceLineExtensionsTest.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacroStabilityInwardsSurfaceLineExtensionsTest.cs (.../MacroStabilityInwardsSurfaceLineExtensionsTest.cs) (revision 459cba9f341765219abedb446c7fe4d0614ccb0e) @@ -169,7 +169,7 @@ } [Test] - public void SetCharacteristicPoints_CharacteristicPointsNull_ThrowsSurfaceLineTransformException() + public void SetCharacteristicPoints_CharacteristicPointsNull_ThrowsImportedDataTransformException() { // Setup const string name = "Some line name"; @@ -224,7 +224,7 @@ [Test] [TestCaseSource(nameof(DifferentCharacteristicPointConfigurationsWithMissingMandatoryPoint))] - public void SetCharacteristicPoints_UndefinedMandatoryPoint_ThrowsSurfaceLineTransformException(CharacteristicPoints points, string pointDescription) + public void SetCharacteristicPoints_UndefinedMandatoryPoint_ThrowsImportedDataTransformException(CharacteristicPoints points, string pointDescription) { // Setup var surfaceLine = new MacroStabilityInwardsSurfaceLine @@ -244,7 +244,7 @@ [Test] [TestCaseSource(nameof(DifferentCharacteristicPointConfigurationsWithMandatoryPointNotOnSurfaceLine))] - public void SetCharacteristicPoints_MandatoryPointNotOnSurfaceLine_ThrowsSurfaceLineTransformException( + public void SetCharacteristicPoints_MandatoryPointNotOnSurfaceLine_ThrowsImportedDataTransformException( CharacteristicPoints points, Action setPoint, string pointDescription) Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacrostabilityInwardsSurfaceLineTransformerTest.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r459cba9f341765219abedb446c7fe4d0614ccb0e --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacrostabilityInwardsSurfaceLineTransformerTest.cs (.../MacrostabilityInwardsSurfaceLineTransformerTest.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.IO.Test/Importers/MacrostabilityInwardsSurfaceLineTransformerTest.cs (.../MacrostabilityInwardsSurfaceLineTransformerTest.cs) (revision 459cba9f341765219abedb446c7fe4d0614ccb0e) @@ -127,7 +127,7 @@ } [Test] - public void Transform_SurfaceLineNotOnReferenceLine_ThrowsSurfaceLineTransformException() + public void Transform_SurfaceLineNotOnReferenceLine_ThrowsImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -158,7 +158,7 @@ } [Test] - public void Transform_SurfaceLineIntersectsReferenceLineMultipleTimes_ThrowsSurfaceLineTransformException() + public void Transform_SurfaceLineIntersectsReferenceLineMultipleTimes_ThrowsImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -191,7 +191,7 @@ } [Test] - public void Transform_WithoutCharacteristicPoints_ThrowsSurfaceLineTransformException() + public void Transform_WithoutCharacteristicPoints_ThrowsImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -324,7 +324,10 @@ [Test] [TestCaseSource(nameof(MoveMandatoryCharacteristicPoint))] - public void Transform_MandatoryCharacteristicPointNotOnSurfaceLine_ThrowsSurfaceLineTransformException(Action pointChange, Func pointWhichIsNull, string changedCharacteristicPointName) + public void Transform_MandatoryCharacteristicPointNotOnSurfaceLine_ThrowsImportedDataTransformException( + Action pointChange, + Func pointWhichIsNull, + string changedCharacteristicPointName) { // Setup var referenceLine = new ReferenceLine(); Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineExtensionsTest.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r459cba9f341765219abedb446c7fe4d0614ccb0e --- Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineExtensionsTest.cs (.../PipingSurfaceLineExtensionsTest.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineExtensionsTest.cs (.../PipingSurfaceLineExtensionsTest.cs) (revision 459cba9f341765219abedb446c7fe4d0614ccb0e) @@ -157,7 +157,7 @@ } [Test] - public void SetCharacteristicPoints_DikeToesReversed_ThrowsSurfaceLineTransformException() + public void SetCharacteristicPoints_DikeToesReversed_ThrowsImportedDataTransformException() { // Setup const string name = "Reversed dike toes"; Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineTransformerTest.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r459cba9f341765219abedb446c7fe4d0614ccb0e --- Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineTransformerTest.cs (.../PipingSurfaceLineTransformerTest.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Importers/PipingSurfaceLineTransformerTest.cs (.../PipingSurfaceLineTransformerTest.cs) (revision 459cba9f341765219abedb446c7fe4d0614ccb0e) @@ -85,7 +85,7 @@ } [Test] - public void Transform_SurfaceLineNotOnReferenceLine_ThrowsSurfaceLineTransformException() + public void Transform_SurfaceLineNotOnReferenceLine_ThrowsImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -116,7 +116,7 @@ } [Test] - public void Transform_SurfaceLineIntersectsReferenceLineMultipleTimes_ThrowsSurfaceLineTransformException() + public void Transform_SurfaceLineIntersectsReferenceLineMultipleTimes_ThrowsImportedDataTransformException() { // Setup var referenceLine = new ReferenceLine(); @@ -187,7 +187,7 @@ [TestCase(2.0)] [TestCase(3.0)] [TestCase(3.5)] - public void Transform_DikeToePolderOnOrBeforeDikeToeRiver_ThrowsSurfaceLineTransformException(double xDikeToePolder) + public void Transform_DikeToePolderOnOrBeforeDikeToeRiver_ThrowsImportedDataTransformException(double xDikeToePolder) { // Setup var referenceLine = new ReferenceLine();