Index: Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelTest.cs =================================================================== diff -u -r3bf7e84ac84de7dd0be38be7e9f2372878e733f6 -rd82fa09fe9ae053ce7702ba89ef23ae029640d1b --- Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelTest.cs (.../StochasticSoilModelTest.cs) (revision 3bf7e84ac84de7dd0be38be7e9f2372878e733f6) +++ Ringtoets/Piping/test/Ringtoets.Piping.Data.Test/StochasticSoilModelTest.cs (.../StochasticSoilModelTest.cs) (revision d82fa09fe9ae053ce7702ba89ef23ae029640d1b) @@ -38,11 +38,11 @@ // Assert Assert.IsInstanceOf(stochasticSoilModelSegment); - Assert.AreEqual(segmentSoilModelId, stochasticSoilModelSegment.SegmentSoilModelId); - Assert.AreEqual(segmentSoilModelName, stochasticSoilModelSegment.SegmentSoilModelName); + Assert.AreEqual(segmentSoilModelId, stochasticSoilModelSegment.Id); + Assert.AreEqual(segmentSoilModelName, stochasticSoilModelSegment.Name); Assert.AreEqual(segmentName, stochasticSoilModelSegment.SegmentName); CollectionAssert.IsEmpty(stochasticSoilModelSegment.Geometry); - CollectionAssert.IsEmpty(stochasticSoilModelSegment.StochasticSoilProfileProbabilities); + CollectionAssert.IsEmpty(stochasticSoilModelSegment.StochasticSoilProfiles); } [Test] @@ -59,8 +59,8 @@ stochasticSoilModelSegment.Geometry.Add(point2D); // Assert - Assert.AreEqual(expectedSegmentSoilModelId, stochasticSoilModelSegment.SegmentSoilModelId); - Assert.AreEqual(expectedSegmentSoilModelName, stochasticSoilModelSegment.SegmentSoilModelName); + Assert.AreEqual(expectedSegmentSoilModelId, stochasticSoilModelSegment.Id); + Assert.AreEqual(expectedSegmentSoilModelName, stochasticSoilModelSegment.Name); Assert.AreEqual(expectedSegmentName, stochasticSoilModelSegment.SegmentName); Assert.AreEqual(1, stochasticSoilModelSegment.Geometry.Count); Assert.AreEqual(point2D, stochasticSoilModelSegment.Geometry[0]); @@ -80,14 +80,14 @@ mockRepository.ReplayAll(); // Call - stochasticSoilModelSegment.StochasticSoilProfileProbabilities.Add(stochasticSoilProfileProbabilityMock); + stochasticSoilModelSegment.StochasticSoilProfiles.Add(stochasticSoilProfileProbabilityMock); // Assert - Assert.AreEqual(expectedSegmentSoilModelId, stochasticSoilModelSegment.SegmentSoilModelId); - Assert.AreEqual(expectedSegmentSoilModelName, stochasticSoilModelSegment.SegmentSoilModelName); + Assert.AreEqual(expectedSegmentSoilModelId, stochasticSoilModelSegment.Id); + Assert.AreEqual(expectedSegmentSoilModelName, stochasticSoilModelSegment.Name); Assert.AreEqual(expectedSegmentName, stochasticSoilModelSegment.SegmentName); - Assert.AreEqual(1, stochasticSoilModelSegment.StochasticSoilProfileProbabilities.Count); - Assert.AreEqual(stochasticSoilProfileProbabilityMock, stochasticSoilModelSegment.StochasticSoilProfileProbabilities[0]); + Assert.AreEqual(1, stochasticSoilModelSegment.StochasticSoilProfiles.Count); + Assert.AreEqual(stochasticSoilProfileProbabilityMock, stochasticSoilModelSegment.StochasticSoilProfiles[0]); mockRepository.VerifyAll(); } }