Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -r20e9bfea15dfe132ee137283a9f24bc4c413ce4a -rf92c2b7608788785f653e0a4f155627df77bda82 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 20e9bfea15dfe132ee137283a9f24bc4c413ce4a) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision f92c2b7608788785f653e0a4f155627df77bda82) @@ -636,6 +636,7 @@ // Precondition: Assert.Greater(expectedSurfaceLines.Count, 0); + Assert.AreEqual(expectedSurfaceLines.SourcePath, actualSurfaceLines.SourcePath); Assert.AreEqual(expectedSurfaceLines.Count, actualSurfaceLines.Count); for (var i = 0; i < expectedSurfaceLines.Count; i++) { @@ -793,6 +794,7 @@ private static void AssertDikeProfiles(DikeProfileCollection expectedDikeProfiles, DikeProfileCollection actualDikeProfiles) { + Assert.AreEqual(expectedDikeProfiles.SourcePath, actualDikeProfiles.SourcePath); Assert.AreEqual(expectedDikeProfiles.Count, actualDikeProfiles.Count); for (var i = 0; i < expectedDikeProfiles.Count; i++) { @@ -815,6 +817,7 @@ private static void AssertForeshoreProfiles(ForeshoreProfileCollection expectedForeshoreProfiles, ForeshoreProfileCollection actualForeshoreProfiles) { + Assert.AreEqual(expectedForeshoreProfiles.SourcePath, actualForeshoreProfiles.SourcePath); Assert.AreEqual(expectedForeshoreProfiles.Count, actualForeshoreProfiles.Count); for (var i = 0; i < expectedForeshoreProfiles.Count; i++) {