public void LegendMouseDownTest()
        {
            Plugins_IBasePlugin target = new Plugins_IBasePlugin();                                 // TODO: Initialize to an appropriate value
            int Handle = 0;                                                                         // TODO: Initialize to an appropriate value
            int Button = 0;                                                                         // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.ClickLocation Location = new MapWindow.Interfaces.ClickLocation(); // TODO: Initialize to an appropriate value
            bool expected = false;                                                                  // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.LegendMouseDown(Handle, Button, Location);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void MapMouseDownTest()
        {
            Plugins_IBasePlugin target = new Plugins_IBasePlugin(); // TODO: Initialize to an appropriate value
            int  Button   = 0;                                      // TODO: Initialize to an appropriate value
            int  Shift    = 0;                                      // TODO: Initialize to an appropriate value
            int  x        = 0;                                      // TODO: Initialize to an appropriate value
            int  y        = 0;                                      // TODO: Initialize to an appropriate value
            bool expected = false;                                  // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.MapMouseDown(Button, Shift, x, y);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void Plugins_IBasePluginConstructorTest()
        {
            Plugins_IBasePlugin target = new Plugins_IBasePlugin();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
 public void ClearTest()
 {
     MapWindow.PluginInterfaces.PluginTracker target = new Plugins_IBasePlugin(); // TODO: Initialize to an appropriate value
     target.Clear();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }