public void TestRemoveNodeVisualDrawingOperationException()
        {
            GraphController graphController = new GraphController(null);

            Assert.Throws<InvalidOperationException>(() =>
            {
                graphController.RemoveDrawingVisual(0x10000001);
            });
        }