Example #1
0
        public void FinalizeTest()
        {
            Menus_Accessor target = new Menus_Accessor(); // TODO: Initialize to an appropriate value

            target.Finalize();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Example #2
0
        public void RemoveSubMenusFromMenuTableTest()
        {
            Menus_Accessor target = new Menus_Accessor();                          // TODO: Initialize to an appropriate value

            System.Windows.Forms.ToolStripMenuItem ParentToolStripMenuItem = null; // TODO: Initialize to an appropriate value
            target.RemoveSubMenusFromMenuTable(ParentToolStripMenuItem);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Example #3
0
        public void MenuTableAddTest()
        {
            Menus_Accessor target  = new Menus_Accessor(); // TODO: Initialize to an appropriate value
            string         Name    = string.Empty;         // TODO: Initialize to an appropriate value
            ToolStripItem  NewMenu = null;                 // TODO: Initialize to an appropriate value

            target.MenuTableAdd(Name, NewMenu);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Example #4
0
        public void MenuTrackerAddTest()
        {
            Menus_Accessor target = new Menus_Accessor(); // TODO: Initialize to an appropriate value
            string         item   = string.Empty;         // TODO: Initialize to an appropriate value
            string         Plugin = string.Empty;         // TODO: Initialize to an appropriate value

            target.MenuTrackerAdd(item, Plugin);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Example #5
0
        public void FindPluginKeyTest()
        {
            Menus_Accessor target   = new Menus_Accessor(); // TODO: Initialize to an appropriate value
            string         expected = string.Empty;         // TODO: Initialize to an appropriate value
            string         actual;

            actual = target.FindPluginKey();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #6
0
        public void MenuTableItemTest()
        {
            Menus_Accessor target = new Menus_Accessor();           // TODO: Initialize to an appropriate value
            string         Name   = string.Empty;                   // TODO: Initialize to an appropriate value

            System.Windows.Forms.ToolStripMenuItem expected = null; // TODO: Initialize to an appropriate value
            System.Windows.Forms.ToolStripMenuItem actual;
            actual = target.MenuTableItem(Name);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }