Example #1
0
        public void ShapeConstructorTest()
        {
            int LayerHandle = 0; // TODO: Initialize to an appropriate value
            int ShapeIndex  = 0; // TODO: Initialize to an appropriate value

            MapWindow.Interfaces.Shape target = new MapWindow.Shape(LayerHandle, ShapeIndex);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Example #2
0
        public void ShowVerticesTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            Color color      = new Color();                            // TODO: Initialize to an appropriate value
            int   vertexSize = 0;                                      // TODO: Initialize to an appropriate value

            target.ShowVertices(color, vertexSize);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Example #3
0
        public void ShapePointImageListIDTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            long expected = 0;                                         // TODO: Initialize to an appropriate value
            long actual;

            target.ShapePointImageListID = expected;
            actual = target.ShapePointImageListID;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #4
0
        public void VisibleTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            bool expected = false;                                     // TODO: Initialize to an appropriate value
            bool actual;

            target.Visible = expected;
            actual         = target.Visible;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #5
0
        public void ColorTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            Color expected = new Color();                              // TODO: Initialize to an appropriate value
            Color actual;

            target.Color = expected;
            actual       = target.Color;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #6
0
        public void FillStippleTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            tkFillStipple expected            = new tkFillStipple();   // TODO: Initialize to an appropriate value
            tkFillStipple actual;

            target.FillStipple = expected;
            actual             = target.FillStipple;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #7
0
        public void LayerHandleTest()
        {
            MapWindow.Shape target   = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            int             expected = 0;                     // TODO: Initialize to an appropriate value
            int             actual;

            target.LayerHandle = expected;
            actual             = target.LayerHandle;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #8
0
        public void LineOrPointSizeTest()
        {
            MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
            float expected = 0F;                                       // TODO: Initialize to an appropriate value
            float actual;

            target.LineOrPointSize = expected;
            actual = target.LineOrPointSize;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #9
0
 public void ShapeConstructorTest1()
 {
     MapWindow.Interfaces.Shape target = new MapWindow.Shape();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #10
0
 public void HideVerticesTest()
 {
     MapWindow.Interfaces.Shape target = new MapWindow.Shape(); // TODO: Initialize to an appropriate value
     target.HideVertices();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }