Пример #1
0
        public void NumPanelsTest()
        {
            MapWindow.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            int actual;

            actual = target.NumPanels;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #2
0
        public void RemovePanelTest1()
        {
            MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            int Index = 0;                                                     // TODO: Initialize to an appropriate value

            target.RemovePanel(Index);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #3
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.");
 }
Пример #4
0
        public void ItemTest()
        {
            MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            int index = 0;                                                     // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.StatusBarItem actual;
            actual = target[index];
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #5
0
        public void RemovePanelTest()
        {
            MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            StatusBarPanel Panel         = null;                               // TODO: Initialize to an appropriate value
            StatusBarPanel PanelExpected = null;                               // TODO: Initialize to an appropriate value

            target.RemovePanel(ref Panel);
            Assert.AreEqual(PanelExpected, Panel);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #6
0
        public void ProgressBarValueTest()
        {
            MapWindow.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            int expected = 0;                                       // TODO: Initialize to an appropriate value
            int actual;

            target.ProgressBarValue = expected;
            actual = target.ProgressBarValue;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #7
0
        public void ShowProgressBarTest()
        {
            MapWindow.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
            bool expected = false;                                  // TODO: Initialize to an appropriate value
            bool actual;

            target.ShowProgressBar = expected;
            actual = target.ShowProgressBar;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #8
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.");
        }
Пример #9
0
 public void StatusBarConstructorTest()
 {
     MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Пример #10
0
 public void ResizeProgressBarTest()
 {
     MapWindow.Interfaces.StatusBar target = new MapWindow.StatusBar(); // TODO: Initialize to an appropriate value
     target.ResizeProgressBar();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }