Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r4f7dea208a70e4e3862a47a44028d6601e6f695f --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/TreeNodeInfos/MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs (.../MacroStabilityInwardsCalculationScenarioContextTreeNodeInfoTest.cs) (revision 4f7dea208a70e4e3862a47a44028d6601e6f695f) @@ -392,7 +392,7 @@ [Test] [TestCase(true)] [TestCase(false)] - public void OnNodeRemoved_ParentIsMacroStabilityInwardsCalculationGroupContext_RemoveCalculationFromGroup(bool groupNameEditable) + public void OnNodeRemoved_ParentIsCalculationGroupContext_RemoveCalculationFromGroup(bool groupNameEditable) { // Setup var observer = mocks.StrictMock(); @@ -435,7 +435,7 @@ [Test] [TestCase(true)] [TestCase(false)] - public void OnNodeRemoved_ParentIsMacroStabilityInwardsCalculationGroupContext_RemoveCalculationFromSectionResult(bool groupNameEditable) + public void OnNodeRemoved_ParentIsCalculationGroupContext_RemoveCalculationFromSectionResult(bool groupNameEditable) { // Setup var observer = mocks.StrictMock(); @@ -662,8 +662,8 @@ } [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, "GivenCalculation_WhenClearingOutputFromContextMenu_ThenOutputClearedAndNotified(true)")] + [TestCase(false, "GivenCalculation_WhenClearingOutputFromContextMenu_ThenOutputClearedAndNotified(false)")] public void GivenCalculationWithOutput_WhenClearingOutputFromContextMenu_ThenCalculationOutputClearedAndNotified(bool confirm) { // Given @@ -725,19 +725,6 @@ } } - private static void ChangeSurfaceLine(RingtoetsMacroStabilityInwardsSurfaceLine surfaceLine) - { - surfaceLine.SetGeometry(new[] - { - new Point3D(0, 0, 0), - new Point3D(1, 0, 2), - new Point3D(2, 0, 3), - new Point3D(3, 0, 0), - new Point3D(4, 0, 2), - new Point3D(5, 0, 3) - }); - } - public override void TearDown() { plugin.Dispose();