Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -rfb3cd6ea3148ac270b92a764bf7a0965785ddb1c -r9404b317374284d0e3fe8bb370f2bd7bd06241b9 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsGroupContextTreeNodeInfoTest.cs (.../WaveHeightLocationsGroupContextTreeNodeInfoTest.cs) (revision fb3cd6ea3148ac270b92a764bf7a0965785ddb1c) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsGroupContextTreeNodeInfoTest.cs (.../WaveHeightLocationsGroupContextTreeNodeInfoTest.cs) (revision 9404b317374284d0e3fe8bb370f2bd7bd06241b9) @@ -129,9 +129,17 @@ Assert.IsTrue(locationsContexts.All(c => ReferenceEquals(assessmentSection, c.AssessmentSection))); var testLocation = new TestHydraulicBoundaryLocation(); + + Assert.AreEqual("A+->A", locationsContexts[0].CategoryBoundaryName); Assert.AreSame(testLocation.WaveHeightCalculation1, locationsContexts[0].GetCalculationFunc(testLocation)); + + Assert.AreEqual("A->B", locationsContexts[1].CategoryBoundaryName); Assert.AreSame(testLocation.WaveHeightCalculation2, locationsContexts[1].GetCalculationFunc(testLocation)); + + Assert.AreEqual("B->C", locationsContexts[2].CategoryBoundaryName); Assert.AreSame(testLocation.WaveHeightCalculation3, locationsContexts[2].GetCalculationFunc(testLocation)); + + Assert.AreEqual("C->D", locationsContexts[3].CategoryBoundaryName); Assert.AreSame(testLocation.WaveHeightCalculation4, locationsContexts[3].GetCalculationFunc(testLocation)); }