Index: Core/Common/test/Core.Common.TestUtil.Test/TestHelperTest.cs =================================================================== diff -u -ra70cb733eb761229173777b9f6cd1b977830b24b -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Core/Common/test/Core.Common.TestUtil.Test/TestHelperTest.cs (.../TestHelperTest.cs) (revision a70cb733eb761229173777b9f6cd1b977830b24b) +++ Core/Common/test/Core.Common.TestUtil.Test/TestHelperTest.cs (.../TestHelperTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -211,8 +211,6 @@ Assert.IsTrue(Directory.Exists(path)); path = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Service); Assert.IsTrue(Directory.Exists(path)); - path = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin); - Assert.IsTrue(Directory.Exists(path)); path = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.GrassCoverErosionInwards.IO); Assert.IsTrue(Directory.Exists(path)); Index: Core/Common/test/Core.Common.TestUtil/TestDataPath.cs =================================================================== diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Core/Common/test/Core.Common.TestUtil/TestDataPath.cs (.../TestDataPath.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a) +++ Core/Common/test/Core.Common.TestUtil/TestDataPath.cs (.../TestDataPath.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -113,7 +113,6 @@ { public static readonly TestDataPath Forms = System.IO.Path.Combine("Ringtoets", "Integration", "test", "Ringtoets.Integration.Forms.Test"); public static readonly TestDataPath Service = System.IO.Path.Combine("Ringtoets", "Integration", "test", "Ringtoets.Integration.Service.Test"); - public static readonly TestDataPath Plugin = System.IO.Path.Combine("Ringtoets", "Integration", "test", "Ringtoets.Integration.Plugin.Test"); } public static class Piping Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/DikeProfilesImporter.cs =================================================================== diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/DikeProfilesImporter.cs (.../DikeProfilesImporter.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1) +++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/DikeProfilesImporter.cs (.../DikeProfilesImporter.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -23,6 +23,7 @@ using System.Collections.Generic; using System.Linq; using Core.Common.Base; +using Core.Common.Base.IO; using Core.Common.IO.Readers; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.DikeProfiles; @@ -103,8 +104,8 @@ } } - private IEnumerable CreateDikeProfiles(IEnumerable dikeProfileLocationCollection, - ICollection dikeProfileDataCollection) + private static IEnumerable CreateDikeProfiles(IEnumerable dikeProfileLocationCollection, + ICollection dikeProfileDataCollection) { var dikeProfiles = new List(); foreach (ProfileLocation dikeProfileLocation in dikeProfileLocationCollection) @@ -114,13 +115,11 @@ DikeProfileData dikeProfileData = GetMatchingDikeProfileData(dikeProfileDataCollection, id); if (dikeProfileData == null) { - Log.ErrorFormat(Resources.DikeProfilesImporter_GetMatchingDikeProfileData_no_dikeprofiledata_for_location_0_, id); + string message = string.Format(Resources.DikeProfilesImporter_GetMatchingDikeProfileData_no_dikeprofiledata_for_location_0_, id); + throw new CriticalFileReadException(message); } - else - { - DikeProfile dikeProfile = CreateDikeProfile(dikeProfileLocation, dikeProfileData); - dikeProfiles.Add(dikeProfile); - } + DikeProfile dikeProfile = CreateDikeProfile(dikeProfileLocation, dikeProfileData); + dikeProfiles.Add(dikeProfile); } return dikeProfiles; } Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ForeshoreProfilesImporter.cs =================================================================== diff -u -red4b032b9903f394deb9691c2c39a9f2122ab0f5 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ForeshoreProfilesImporter.cs (.../ForeshoreProfilesImporter.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5) +++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ForeshoreProfilesImporter.cs (.../ForeshoreProfilesImporter.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -22,6 +22,7 @@ using System; using System.Collections.Generic; using System.Linq; +using Core.Common.Base.IO; using Core.Common.IO.Readers; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.DikeProfiles; @@ -72,8 +73,8 @@ return false; } - private IEnumerable CreateForeshoreProfiles(ICollection dikeProfileLocationCollection, - ICollection dikeProfileDataCollection) + private static IEnumerable CreateForeshoreProfiles(IEnumerable dikeProfileLocationCollection, + ICollection dikeProfileDataCollection) { var foreshoreProfiles = new List(); foreach (ProfileLocation dikeProfileLocation in dikeProfileLocationCollection) @@ -83,13 +84,11 @@ DikeProfileData dikeProfileData = GetMatchingDikeProfileData(dikeProfileDataCollection, id); if (dikeProfileData == null) { - Log.ErrorFormat(Resources.ForeshoreProfilesImporter_GetMatchingForeshoreProfileData_no_foreshoreprofiledata_for_location_0_, id); + string message = string.Format(Resources.ForeshoreProfilesImporter_GetMatchingForeshoreProfileData_no_foreshoreprofiledata_for_location_0_, id); + throw new CriticalFileReadException(message); } - else - { - ForeshoreProfile foreshoreProfile = CreateForeshoreProfile(dikeProfileLocation, dikeProfileData); - foreshoreProfiles.Add(foreshoreProfile); - } + ForeshoreProfile foreshoreProfile = CreateForeshoreProfile(dikeProfileLocation, dikeProfileData); + foreshoreProfiles.Add(foreshoreProfile); } return foreshoreProfiles; } Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ProfilesImporter.cs =================================================================== diff -u -r42de53622a93676d31723d47254e1b7730ef6434 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ProfilesImporter.cs (.../ProfilesImporter.cs) (revision 42de53622a93676d31723d47254e1b7730ef6434) +++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/ProfilesImporter.cs (.../ProfilesImporter.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -91,8 +91,17 @@ } NotifyProgress(MessageProvider.GetAddDataToModelProgressText(), 1, 1); - CreateProfiles(importDikeProfilesResult, importDikeProfileDataResult); + try + { + CreateProfiles(importDikeProfilesResult, importDikeProfileDataResult); + } + catch (CriticalFileReadException e) + { + Log.Error(e.Message); + return false; + } + return true; } @@ -101,6 +110,8 @@ /// /// The read profile locations. /// The read dike profile geometries. + /// Thrown when + /// does not contain data for a location in . protected abstract void CreateProfiles(ReadResult importProfileLocationResult, ReadResult importDikeProfileDataResult); @@ -279,7 +290,6 @@ dikeProfileData.Add(data); } - // No need to catch ArgumentException, as prflFilePaths are valid by construction. catch (CriticalFileReadException exception) { Log.Error(exception.Message); Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/DikeProfilesImporterTest.cs =================================================================== diff -u -r42de53622a93676d31723d47254e1b7730ef6434 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/DikeProfilesImporterTest.cs (.../DikeProfilesImporterTest.cs) (revision 42de53622a93676d31723d47254e1b7730ef6434) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/DikeProfilesImporterTest.cs (.../DikeProfilesImporterTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -165,17 +165,17 @@ const string expectedMessage = "Kan geen geldige gegevens vinden voor dijkprofiellocatie met ID 'unmatchable'."; var expectedLogMessage = new Tuple(expectedMessage, LogLevelConstant.Error); TestHelper.AssertLogMessageWithLevelIsGenerated(call, expectedLogMessage, 1); - Assert.IsTrue(importResult); + Assert.IsFalse(importResult); } [Test] - public void Import_FiveDikeProfilesWithoutGeometries_TrueAndLogWarningAndNoDikeProfiles() + public void Import_TwoDikeProfilesWithoutGeometries_TrueAndLogWarning() { // Setup var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string fileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string fileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "NoDikeProfileGeometries")); string filePath = Path.Combine(fileDirectory, "Voorlanden 12-2.shp"); @@ -191,25 +191,19 @@ // Assert var expectedMessages = new[] { - Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel001 - Ringtoets.prfl")}' wordt overgeslagen.", + Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel001NoGeometry - Ringtoets.prfl")}' wordt overgeslagen.", LogLevelConstant.Warn), - Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel002 - Ringtoets.prfl")}' wordt overgeslagen.", + Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel002NoGeometry - Ringtoets.prfl")}' wordt overgeslagen.", LogLevelConstant.Warn), - Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel003 - Ringtoets.prfl")}' wordt overgeslagen.", - LogLevelConstant.Warn), - Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel004 - Ringtoets.prfl")}' wordt overgeslagen.", - LogLevelConstant.Warn), - Tuple.Create($"Profielgegevens definiëren geen dijkgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel005 - Ringtoets.prfl")}' wordt overgeslagen.", - LogLevelConstant.Warn) }; - TestHelper.AssertLogMessagesWithLevelAreGenerated(call, expectedMessages); + TestHelper.AssertLogMessagesWithLevelAreGenerated(call, expectedMessages, 2); Assert.IsTrue(importResult); Assert.IsTrue(updateStrategy.Updated); - Assert.AreEqual(0, updateStrategy.ReadDikeProfiles.Length); + Assert.AreEqual(5, updateStrategy.ReadDikeProfiles.Length); } [Test] - public void Import_OneDikeProfileLocationNotCloseEnoughToReferenceLine_TrueAndLogErrorAndFourDikeProfiles() + public void Import_OneDikeProfileLocationNotCloseEnoughToReferenceLine_FalseAndLogErrorAndFourDikeProfiles() { // Setup var messageProvider = mocks.Stub(); Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ForeshoreProfilesImporterTest.cs =================================================================== diff -u -red4b032b9903f394deb9691c2c39a9f2122ab0f5 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ForeshoreProfilesImporterTest.cs (.../ForeshoreProfilesImporterTest.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ForeshoreProfilesImporterTest.cs (.../ForeshoreProfilesImporterTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -96,7 +96,7 @@ } [Test] - public void Import_FromFileWithUnmatchableId_TrueAndLogError() + public void Import_FromFileWithUnmatchableId_FalseAndLogError() { // Setup string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, @@ -122,15 +122,15 @@ const string expectedMessage = "Kan geen geldige gegevens vinden voor voorlandprofiellocatie met ID 'unmatchable'."; Assert.AreEqual(expectedMessage, messageArray[0]); }); - Assert.IsTrue(importResult); + Assert.IsFalse(importResult); mockRepository.VerifyAll(); } [Test] - public void Import_FiveForeshoreProfilesWithoutDamsAndGeometries_TrueAndLogWarningAndTwoForeshoreProfiles() + public void Import_TwoForeshoreProfilesWithoutDamsAndGeometries_TrueAndLogWarning() { // Setup - string fileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string fileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "NoDamsAndNoForeshoreGeometries")); string filePath = Path.Combine(fileDirectory, "Voorlanden 12-2.shp"); @@ -145,13 +145,12 @@ // Assert string[] expectedMessages = { - string.Format("Profielgegevens definiëren geen dam en geen voorlandgeometrie. Bestand '{0}' wordt overgeslagen.", Path.Combine(fileDirectory, "profiel001 - Ringtoets.prfl")), - string.Format("Profielgegevens definiëren geen dam en geen voorlandgeometrie. Bestand '{0}' wordt overgeslagen.", Path.Combine(fileDirectory, "profiel003 - Ringtoets.prfl")), - string.Format("Profielgegevens definiëren geen dam en geen voorlandgeometrie. Bestand '{0}' wordt overgeslagen.", Path.Combine(fileDirectory, "profiel004 - Ringtoets.prfl")) + $"Profielgegevens definiëren geen dam en geen voorlandgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel001NoForeshoreNoDam - Ringtoets.prfl")}' wordt overgeslagen.", + $"Profielgegevens definiëren geen dam en geen voorlandgeometrie. Bestand '{Path.Combine(fileDirectory, "profiel002NoForeshoreNoDam - Ringtoets.prfl")}' wordt overgeslagen.", }; - TestHelper.AssertLogMessagesAreGenerated(call, expectedMessages); + TestHelper.AssertLogMessagesAreGenerated(call, expectedMessages, 2); Assert.IsTrue(importResult); - Assert.AreEqual(2, foreshoreProfiles.Count); + Assert.AreEqual(5, foreshoreProfiles.Count); } [Test] Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/HydraulicBoundaryDatabaseImporterTest.cs =================================================================== diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/HydraulicBoundaryDatabaseImporterTest.cs (.../HydraulicBoundaryDatabaseImporterTest.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/HydraulicBoundaryDatabaseImporterTest.cs (.../HydraulicBoundaryDatabaseImporterTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -38,7 +38,7 @@ [TestFixture] public class HydraulicBoundaryDatabaseImporterTest { - private readonly string testDataPath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, "HydraulicBoundaryDatabaseImporter"); + private readonly string testDataPath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, nameof(HydraulicBoundaryDatabaseImporter)); private HydraulicBoundaryDatabaseImporter importer; [SetUp] @@ -107,7 +107,7 @@ mocks.ReplayAll(); string filePath = Path.Combine(testDataPath, "nonexisting.sqlite"); - string expectedExceptionMessage = string.Format("Fout bij het lezen van bestand '{0}': het bestand bestaat niet.", filePath); + string expectedExceptionMessage = $"Fout bij het lezen van bestand '{filePath}': het bestand bestaat niet."; // Call TestDelegate test = () => importer.Import(assessmentSection, filePath); @@ -154,7 +154,7 @@ mocks.ReplayAll(); string filePath = Path.Combine(testDataPath, "/"); - string expectedExceptionMessage = string.Format("Fout bij het lezen van bestand '{0}': bestandspad mag niet verwijzen naar een lege bestandsnaam.", filePath); + string expectedExceptionMessage = $"Fout bij het lezen van bestand '{filePath}': bestandspad mag niet verwijzen naar een lege bestandsnaam."; // Call TestDelegate test = () => importer.Import(assessmentSection, filePath); @@ -204,9 +204,7 @@ TestDelegate test = () => importer.Import(assessmentSection, validFilePath); // Assert - string expectedMessage = new FileReaderErrorMessageBuilder(validFilePath).Build(string.Format( - "Kon het rekeninstellingen bestand niet openen. Fout bij het lezen van bestand '{0}': het bestand bestaat niet.", - HydraulicDatabaseHelper.GetHydraulicBoundarySettingsDatabase(validFilePath))); + string expectedMessage = new FileReaderErrorMessageBuilder(validFilePath).Build($"Kon het rekeninstellingen bestand niet openen. Fout bij het lezen van bestand '{HydraulicDatabaseHelper.GetHydraulicBoundarySettingsDatabase(validFilePath)}': het bestand bestaat niet."); var exception = Assert.Throws(test); Assert.AreEqual(expectedMessage, exception.Message); @@ -245,11 +243,10 @@ assessmentSection.Expect(section => section.NotifyObservers()); mocks.ReplayAll(); - string validFilePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, - "completeWithLocationsToBeFilteredOut.sqlite"); + string validFilePath = Path.Combine(testDataPath, "completeWithLocationsToBeFilteredOut.sqlite"); // Precondition - Assert.IsTrue(File.Exists(validFilePath), string.Format("Precodition failed. File does not exist: {0}", validFilePath)); + Assert.IsTrue(File.Exists(validFilePath), $"Precodition failed. File does not exist: {validFilePath}"); // Call var importResult = false; @@ -278,13 +275,11 @@ assessmentSection.Expect(section => section.NotifyObservers()).Repeat.Twice(); mocks.ReplayAll(); - string validFilePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, - "completeWithLocationsToBeFilteredOut.sqlite"); - string copyValidFilePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, - "copyOfCompleteWithLocationsToBeFilteredOut.sqlite"); + string validFilePath = Path.Combine(testDataPath, "completeWithLocationsToBeFilteredOut.sqlite"); + string copyValidFilePath = Path.Combine(testDataPath, "copyOfCompleteWithLocationsToBeFilteredOut.sqlite"); // Precondition - Assert.IsTrue(File.Exists(validFilePath), string.Format("Precodition failed. File does not exist: {0}", validFilePath)); + Assert.IsTrue(File.Exists(validFilePath), $"Precodition failed. File does not exist: {validFilePath}"); importer.Import(assessmentSection, validFilePath); @@ -310,11 +305,10 @@ assessmentSection.Expect(section => section.NotifyObservers()); mocks.ReplayAll(); - string validFilePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, - "completeWithLocationsToBeFilteredOut.sqlite"); + string validFilePath = Path.Combine(testDataPath, "completeWithLocationsToBeFilteredOut.sqlite"); // Precondition - Assert.IsTrue(File.Exists(validFilePath), string.Format("Precodition failed. File does not exist: {0}", validFilePath)); + Assert.IsTrue(File.Exists(validFilePath), $"Precodition failed. File does not exist: {validFilePath}"); importer.Import(assessmentSection, validFilePath); @@ -341,7 +335,7 @@ mocks.ReplayAll(); string corruptPath = Path.Combine(testDataPath, "corruptschema.sqlite"); - string expectedLogMessage = string.Format("Fout bij het lezen van bestand '{0}': kritieke fout opgetreden bij het uitlezen van waardes uit kolommen in de database. Het bestand wordt overgeslagen.", corruptPath); + string expectedLogMessage = $"Fout bij het lezen van bestand '{corruptPath}': kritieke fout opgetreden bij het uitlezen van waardes uit kolommen in de database. Het bestand wordt overgeslagen."; var importResult = true; Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs =================================================================== diff -u -r42de53622a93676d31723d47254e1b7730ef6434 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs (.../ProfilesImporterTest.cs) (revision 42de53622a93676d31723d47254e1b7730ef6434) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs (.../ProfilesImporterTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -193,7 +193,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", shapeFileName)); var testProfilesImporter = new TestProfilesImporter(testImportTarget, testReferenceLine, filePath, messageProvider); @@ -217,7 +217,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", fileName)); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -240,7 +240,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "Voorlanden_12-2_EmptyId.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -263,7 +263,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "Voorlanden_12-2_EmptyX0.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -286,7 +286,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "AllOkTestData", "Voorlanden 12-2.shp")); var referencePoints = new List @@ -318,7 +318,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string testFileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string testFileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "InvalidDamType")); string filePath = Path.Combine(testFileDirectory, "Voorlanden 12-2.shp"); @@ -343,7 +343,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string testFileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string testFileDirectory = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "TwoPrflWithSameId")); string filePath = Path.Combine(testFileDirectory, "profiel001.shp"); @@ -374,7 +374,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "Voorlanden_12-2_same_id_3_times.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -397,7 +397,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "PrflWithProfileNotZero", "Voorland_12-2.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -424,7 +424,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "PrflIsIncomplete", "Voorland_12-2.shp")); var referenceLine = new ReferenceLine(); @@ -456,7 +456,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "OkTestDataWithUnrelatedPrfl", "Voorland 12-2.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); var testProfilesImporter = new TestProfilesImporter(new ObservableList(), referenceLine, filePath, messageProvider); @@ -477,7 +477,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "AllOkTestData", "Voorlanden 12-2.shp")); var testProfilesImporter = new TestProfilesImporter(testImportTarget, testReferenceLine, filePath, messageProvider); @@ -503,7 +503,7 @@ var messageProvider = mocks.Stub(); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "AllOkTestData", "Voorlanden 12-2.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); @@ -532,7 +532,7 @@ messageProvider.Stub(mp => mp.GetAddDataToModelProgressText()).Return(addingDataToModel); mocks.ReplayAll(); - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, + string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Common.IO, Path.Combine("DikeProfiles", "AllOkTestData", "Voorlanden 12-2.shp")); ReferenceLine referenceLine = CreateMatchingReferenceLine(); Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/StructuresImporterTest.cs =================================================================== diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/StructuresImporterTest.cs (.../StructuresImporterTest.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/StructuresImporterTest.cs (.../StructuresImporterTest.cs) (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -225,26 +225,8 @@ // Assert Assert.IsFalse(importResult); } - + [Test] - public void Import_CancelOfImportToValidTargetWithValidFile_ReturnsFalse() - { - // Setup - string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, - Path.Combine("Structures", "CorrectFiles", "Kunstwerken.shp")); - - var testStructuresImporter = new TestStructuresImporter(testImportTarget, testReferenceLine, filePath); - - testStructuresImporter.Cancel(); - - // Call - bool importResult = testStructuresImporter.Import(); - - // Assert - Assert.IsFalse(importResult); - } - - [Test] public void Import_CancelOfImportWhenReadingLocations_CancelsImportAndLogs() { // Setup Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel001 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel001 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel001 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel002 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel002 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel002 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 1 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel003 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel003 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel003 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel003 + +RICHTING 330 + +DAM 3 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel004 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel004 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel004 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,26 @@ +VERSIE 4.0 +ID profiel004 + +RICHTING 330 + +DAM 2 +DAMHOOGTE 0.5 + +VOORLAND 3 +-150.000 -9.000 1.000 +-100.000 -6.000 1.000 +-18.000 -6.000 1.000 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel005 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel005 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/InvalidDamType/profiel005 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,26 @@ +VERSIE 4.0 +ID profiel005 + +RICHTING 330 + +DAM 4 +DAMHOOGTE 0.5 + +VOORLAND 3 +-150.000 -9.000 1.000 +-100.000 -6.000 1.000 +-18.000 -6.000 1.000 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 2 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001NoForeshoreNoDam - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001NoForeshoreNoDam - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001NoForeshoreNoDam - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 1 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002NoForeshoreNoDam - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002NoForeshoreNoDam - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002NoForeshoreNoDam - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel003 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel003 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel003 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel003 + +RICHTING 330 + +DAM 1 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel004 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel004 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel004 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel004 + +RICHTING 330 + +DAM 1 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel005 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel005 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel005 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,26 @@ +VERSIE 4.0 +ID profiel005 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0.5 + +VOORLAND 3 +-150.000 -9.000 1.000 +-100.000 -6.000 1.000 +-18.000 -6.000 1.000 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,24 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001NoGeometry - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001NoGeometry - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001NoGeometry - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,20 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 0 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002NoGeometry - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002NoGeometry - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002NoGeometry - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,19 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 0 + +MEMO +Verkenning prfl format: +geen dam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel003 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel003 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel003 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel003 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel004 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel004 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel004 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel004 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0.5 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel005 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel005 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel005 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,26 @@ +VERSIE 4.0 +ID profiel005 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0.5 + +VOORLAND 3 +-150.000 -9.000 1.000 +-100.000 -6.000 1.000 +-18.000 -6.000 1.000 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +dam: havendam +voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel001 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel001 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel001 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel002 - Ringtoets.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel002 - Ringtoets.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel002 - Ringtoets.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,23 @@ +VERSIE 4.0 +ID profiel002 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 4 +-18.000 -6.000 1.000 +-2.000 -0.100 0.500 +2.000 0.100 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +geen dam +geen voorland +talud met (ruwe) berm Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort_RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Double_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["Meter",1]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.qpj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.qpj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.qpj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort / RD New",GEOGCS["Amersfoort",DATUM["Amersfoort",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[565.417,50.3319,465.552,-0.398957,0.343988,-1.8774,4.0725],AUTHORITY["EPSG","6289"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4289"]],PROJECTION["Oblique_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","28992"]] Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/faulty_incompleteFile.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/faulty_incompleteFile.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflIsIncomplete/faulty_incompleteFile.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,7 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Damwand1.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Damwand1.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Damwand1.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort_RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Double_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["Meter",1]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 1 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.qpj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.qpj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.qpj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort / RD New",GEOGCS["Amersfoort",DATUM["Amersfoort",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[565.417,50.3319,465.552,-0.398957,0.343988,-1.8774,4.0725],AUTHORITY["EPSG","6289"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4289"]],PROJECTION["Oblique_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","28992"]] Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort_RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Double_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["Meter",1]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.qpj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.qpj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.qpj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["Amersfoort / RD New",GEOGCS["Amersfoort",DATUM["Amersfoort",SPHEROID["Bessel 1841",6377397.155,299.1528128,AUTHORITY["EPSG","7004"]],TOWGS84[565.417,50.3319,465.552,-0.398957,0.343988,-1.8774,4.0725],AUTHORITY["EPSG","6289"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4289"]],PROJECTION["Oblique_Stereographic"],PARAMETER["latitude_of_origin",52.15616055555555],PARAMETER["central_meridian",5.38763888888889],PARAMETER["scale_factor",0.9999079],PARAMETER["false_easting",155000],PARAMETER["false_northing",463000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["X",EAST],AXIS["Y",NORTH],AUTHORITY["EPSG","28992"]] Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_1.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_1.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_1.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_2.prfl =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_2.prfl (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_2.prfl (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1,22 @@ +VERSIE 4.0 +ID profiel001 + +RICHTING 330 + +DAM 0 +DAMHOOGTE 0 + +VOORLAND 0 + +DAMWAND 0 +KRUINHOOGTE 6 +DIJK 2 +0.000 0.000 1.000 +18.000 6.000 1.000 + +MEMO +Verkenning prfl format: +Basis: +geen dam +geen voorland +recht talud Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.dbf =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.prj =================================================================== diff -u --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.prj (revision 0) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.prj (revision d12c953518f14c3d50136775b2c03afdf3a4f8f1) @@ -0,0 +1 @@ +PROJCS["RD_New",GEOGCS["GCS_Amersfoort",DATUM["D_Amersfoort",SPHEROID["Bessel_1841",6377397.155,299.1528128]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Double_Stereographic"],PARAMETER["False_Easting",155000.0],PARAMETER["False_Northing",463000.0],PARAMETER["Central_Meridian",5.38763888888889],PARAMETER["Scale_Factor",0.9999079],PARAMETER["Latitude_Of_Origin",52.15616055555555],UNIT["Meter",1.0]] \ No newline at end of file Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.shp =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.shx =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/HydraulicBoundaryDatabaseImporter/completeWithLocationsToBeFilteredOut.config.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/HydraulicBoundaryDatabaseImporter/completeWithLocationsToBeFilteredOut.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/HydraulicBoundaryDatabaseImporter/copyOfCompleteWithLocationsToBeFilteredOut.config.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/test-data/HydraulicBoundaryDatabaseImporter/copyOfCompleteWithLocationsToBeFilteredOut.sqlite =================================================================== diff -u Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/Voorlanden 12-2.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/Voorlanden 12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/Voorlanden 12-2.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/Voorlanden 12-2.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/profiel001 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/profiel002 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/profiel003 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/profiel004 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/AllOkTestData/profiel005 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/Voorlanden 12-2.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/profiel001 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/profiel002 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/profiel003 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/profiel004 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/InvalidDamType/profiel005 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.dbf =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.shp =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/Voorlanden 12-2.shx =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel001 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel002 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel003 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel004 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDamsAndNoForeshoreGeometries/profiel005 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.dbf =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.shp =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/Voorlanden 12-2.shx =================================================================== diff -u -r53264d86c84cc30a06519b1b86b7efeee9b6815f -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel001 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel002 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel003 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel004 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/NoDikeProfileGeometries/profiel005 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.dbf =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.shp =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/Voorland 12-2.shx =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel001 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/OkTestDataWithUnrelatedPrfl/profiel002 - Ringtoets.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.qpj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/Voorland_12-2.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflIsIncomplete/faulty_incompleteFile.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Damwand1.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.dbf =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.prj'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.qpj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.shp =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/PrflWithProfileNotZero/Voorland_12-2.shx =================================================================== diff -u -r3ef2233d45ec65453a83651716d5e3d5cf96ac4c -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.prj'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.qpj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_1.prfl'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/TwoPrflWithSameId/profiel001_2.prfl'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyId.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyId.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyId.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyId.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyX0.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyX0.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyX0.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_EmptyX0.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithSymbol.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithSymbol.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithSymbol.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithSymbol.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithWhitespace.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithWhitespace.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithWhitespace.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_IdWithWhitespace.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutId.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutId.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutId.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutId.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutName.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutName.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutName.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutName.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutX0.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutX0.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutX0.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_WithoutX0.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.dbf =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Fisheye: Tag d12c953518f14c3d50136775b2c03afdf3a4f8f1 refers to a dead (removed) revision in file `Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.prj'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.shp =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/DikeProfiles/Voorlanden_12-2_same_id_3_times.shx =================================================================== diff -u -r1dddcf22e6d496a00dcfe85cf8d1302a8df121cd -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/HLCD.sqlite =================================================================== diff -u -r3d53c0f0b1a88c65b24a20f0add0ead3d796f0ca -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/completeWithLocationsToBeFilteredOut.config.sqlite =================================================================== diff -u -raf6fa199641fa9c756bfb8c96727a359f08ae1a3 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/completeWithLocationsToBeFilteredOut.sqlite =================================================================== diff -u -r3d53c0f0b1a88c65b24a20f0add0ead3d796f0ca -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/copyOfCompleteWithLocationsToBeFilteredOut.config.sqlite =================================================================== diff -u -raf6fa199641fa9c756bfb8c96727a359f08ae1a3 -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/test-data/copyOfCompleteWithLocationsToBeFilteredOut.sqlite =================================================================== diff -u -rd7e204007a0a9e73fdfec7e570a397d4c41a463b -rd12c953518f14c3d50136775b2c03afdf3a4f8f1 Binary files differ