public void ToolStripMenuItemConstructorTest()
        {
            string Name        = string.Empty; // TODO: Initialize to an appropriate value
            bool   IsSeparator = false;        // TODO: Initialize to an appropriate value

            MapWindow.ToolStripMenuItem target = new MapWindow.ToolStripMenuItem(Name, IsSeparator);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void ToolStripMenuItemConstructorTest1()
        {
            string Name = string.Empty;                           // TODO: Initialize to an appropriate value

            System.Windows.Forms.ToolStripMenuItem Menu   = null; // TODO: Initialize to an appropriate value
            MapWindow.ToolStripMenuItem            target = new MapWindow.ToolStripMenuItem(Name, Menu);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void NameTest()
        {
            System.Windows.Forms.ToolStripMenuItem Menu   = null;                                  // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.MenuItem          target = new MapWindow.ToolStripMenuItem(Menu); // TODO: Initialize to an appropriate value
            string actual;

            actual = target.Name;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void TooltipTest()
        {
            System.Windows.Forms.ToolStripMenuItem Menu   = null;                                  // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.MenuItem          target = new MapWindow.ToolStripMenuItem(Menu); // TODO: Initialize to an appropriate value
            string expected = string.Empty;                                                        // TODO: Initialize to an appropriate value
            string actual;

            target.Tooltip = expected;
            actual         = target.Tooltip;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void VisibleTest()
        {
            System.Windows.Forms.ToolStripMenuItem Menu   = null;                                  // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.MenuItem          target = new MapWindow.ToolStripMenuItem(Menu); // TODO: Initialize to an appropriate value
            bool expected = false;                                                                 // TODO: Initialize to an appropriate value
            bool actual;

            target.Visible = expected;
            actual         = target.Visible;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void SubItemTest()
        {
            System.Windows.Forms.ToolStripMenuItem Menu   = null;                                  // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.MenuItem          target = new MapWindow.ToolStripMenuItem(Menu); // TODO: Initialize to an appropriate value
            int Index = 0;                                                                         // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.MenuItem expected = null;                                         // TODO: Initialize to an appropriate value
            MapWindow.Interfaces.MenuItem actual;
            actual = target.SubItem(Index);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }