Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -rb4a21813310e188e65bffa91d101131cbd4e0d5b -r96c1ccdc59027cef75d66c29a1724d0652576bd5 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../ClosingStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision b4a21813310e188e65bffa91d101131cbd4e0d5b) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../ClosingStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision 96c1ccdc59027cef75d66c29a1724d0652576bd5) @@ -103,22 +103,23 @@ // Assert Assert.AreEqual(typeof(ClosingStructuresCalculationGroupContext), info.TagType); Assert.IsNotNull(info.Text); + Assert.IsNull(info.ForeColor); Assert.IsNotNull(info.Image); + Assert.IsNotNull(info.ContextMenuStrip); Assert.IsNotNull(info.EnsureVisibleOnCreate); + Assert.IsNull(info.ExpandOnCreate); Assert.IsNotNull(info.ChildNodeObjects); - Assert.IsNotNull(info.ContextMenuStrip); Assert.IsNotNull(info.CanRename); Assert.IsNotNull(info.OnNodeRenamed); Assert.IsNotNull(info.CanRemove); Assert.IsNotNull(info.OnNodeRemoved); - Assert.IsNotNull(info.CanDrag); - Assert.IsNotNull(info.CanInsert); - Assert.IsNotNull(info.CanDrop); - Assert.IsNotNull(info.OnDrop); - Assert.IsNull(info.ForeColor); Assert.IsNull(info.CanCheck); Assert.IsNull(info.IsChecked); Assert.IsNull(info.OnNodeChecked); + Assert.IsNotNull(info.CanDrag); + Assert.IsNotNull(info.CanDrop); + Assert.IsNotNull(info.CanInsert); + Assert.IsNotNull(info.OnDrop); } [Test]