Ejemplo n.º 1
0
        public void DeletePanelTest()
        {
            MapWindow.Interfaces.UIPanel target = new clsUIPanel(); // TODO: Initialize to an appropriate value
            string Caption = string.Empty;                          // TODO: Initialize to an appropriate value

            target.DeletePanel(Caption);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Ejemplo n.º 2
0
        public void SetPanelVisibleTest()
        {
            MapWindow.Interfaces.UIPanel target = new clsUIPanel(); // TODO: Initialize to an appropriate value
            string Caption = string.Empty;                          // TODO: Initialize to an appropriate value
            bool   Visible = false;                                 // TODO: Initialize to an appropriate value

            target.SetPanelVisible(Caption, Visible);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Ejemplo n.º 3
0
        public void AddOnCloseHandlerTest()
        {
            MapWindow.Interfaces.UIPanel target = new clsUIPanel();   // TODO: Initialize to an appropriate value
            string Caption = string.Empty;                            // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.OnPanelClose OnCloseFunction = null; // TODO: Initialize to an appropriate value
            target.AddOnCloseHandler(Caption, OnCloseFunction);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Ejemplo n.º 4
0
        public void CreatePanelTest1()
        {
            MapWindow.Interfaces.UIPanel target = new clsUIPanel(); // TODO: Initialize to an appropriate value
            string    Caption   = string.Empty;                     // TODO: Initialize to an appropriate value
            DockStyle DockStyle = new DockStyle();                  // 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.");
        }
Ejemplo n.º 5
0
        public void clsUIPanelConstructorTest()
        {
            clsUIPanel target = new clsUIPanel();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }