public void SimplifyDockstateTest()
        {
            MapWindow.Interfaces.MapWindowDockStyle DockStyle = new MapWindow.Interfaces.MapWindowDockStyle(); // TODO: Initialize to an appropriate value
            DockState expected = new DockState();                                                              // TODO: Initialize to an appropriate value
            DockState actual;

            actual = clsUIPanel.SimplifyDockstate(DockStyle);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void CreatePanelTest()
        {
            MapWindow.Interfaces.UIPanel target = new clsUIPanel();                                            // TODO: Initialize to an appropriate value
            string Caption = string.Empty;                                                                     // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.MapWindowDockStyle DockStyle = new MapWindow.Interfaces.MapWindowDockStyle(); // TODO: Initialize to an appropriate value
            Panel expected = null;                                                                             // TODO: Initialize to an appropriate value
            Panel actual;

            actual = target.CreatePanel(Caption, DockStyle);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }