Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -r724c2ade6c72ae9d53a12540bdff3a6ece79c34d -r805900e6c21f2b90ae2c238afb48dc054f769084 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision 724c2ade6c72ae9d53a12540bdff3a6ece79c34d) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision 805900e6c21f2b90ae2c238afb48dc054f769084) @@ -52,6 +52,9 @@ [TestFixture] public class HeightStructuresCalculationContextTreeNodeInfoTest : NUnitFormTest { + private const int contextMenuValidateIndex = 0; + private const int contextMenuCalculateIndex = 1; + private const int contextMenuClearIndex = 2; private readonly string testDataPath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.IO, "HydraulicBoundaryLocationReader"); private MockRepository mocks; @@ -66,14 +69,6 @@ info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(HeightStructuresCalculationContext)); } - public override void TearDown() - { - plugin.Dispose(); - mocks.VerifyAll(); - - base.TearDown(); - } - [Test] public void Initialized_Always_ExpectedPropertiesSet() { @@ -744,10 +739,14 @@ CollectionAssert.DoesNotContain(group.Children, elementToBeRemoved); } - private const int contextMenuValidateIndex = 0; - private const int contextMenuCalculateIndex = 1; - private const int contextMenuClearIndex = 2; + public override void TearDown() + { + plugin.Dispose(); + mocks.VerifyAll(); + base.TearDown(); + } + private class TestHeightStructuresOutput : ProbabilityAssessmentOutput { public TestHeightStructuresOutput() : base(0, 0, 0, 0, 0) {}