Ejemplo n.º 1
0
 public void AddPanelTest1()
 {
     MapWindow.Interfaces.StatusBar     target   = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
     MapWindow.Interfaces.StatusBarItem expected = null;                      // TODO: Initialize to an appropriate value
     MapWindow.Interfaces.StatusBarItem actual;
     actual = target.AddPanel();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
        public void AddPanelTest()
        {
            MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            string Text     = string.Empty;                                    // TODO: Initialize to an appropriate value
            int    Position = 0;                                               // TODO: Initialize to an appropriate value
            int    Width    = 0;                                               // TODO: Initialize to an appropriate value
            StatusBarPanelAutoSize AutoSize = new StatusBarPanelAutoSize();    // TODO: Initialize to an appropriate value
            StatusBarPanel         expected = null;                            // TODO: Initialize to an appropriate value
            StatusBarPanel         actual;

            actual = target.AddPanel(Text, Position, Width, AutoSize);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }