Exemple #1
0
        public void PointSFInfoConstructorTest()
        {
            int         LayerHandle = 0; // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Exemple #2
0
        public void DisposeTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            IDisposable target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value

            target.Dispose();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Exemple #3
0
        public void BoundingBoxXTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            string      actual;

            actual = target.BoundingBoxX;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #4
0
        public void TagTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            string      expected    = string.Empty;                 // TODO: Initialize to an appropriate value
            string      actual;

            target.Tag = expected;
            actual     = target.Tag;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #5
0
        public void TransparentColorTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            Color       expected    = new Color();                  // TODO: Initialize to an appropriate value
            Color       actual;

            target.TransparentColor = expected;
            actual = target.TransparentColor;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #6
0
        public void ColoringSchemeTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            object      expected    = null;                         // TODO: Initialize to an appropriate value
            object      actual;

            target.ColoringScheme = expected;
            actual = target.ColoringScheme;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #7
0
        public void ExpandedTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            bool        expected    = false;                        // TODO: Initialize to an appropriate value
            bool        actual;

            target.Expanded = expected;
            actual          = target.Expanded;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #8
0
        public void LegendPictureTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            Icon        expected    = null;                         // TODO: Initialize to an appropriate value
            Icon        actual;

            target.LegendPicture = expected;
            actual = target.LegendPicture;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #9
0
        public void MapBitmapTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            Bitmap      expected    = null;                         // TODO: Initialize to an appropriate value
            Bitmap      actual;

            target.MapBitmap = expected;
            actual           = target.MapBitmap;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #10
0
        public void PointSizeTest()
        {
            int         LayerHandle = 0;                            // TODO: Initialize to an appropriate value
            PointSFInfo target      = new PointSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            double      expected    = 0F;                           // TODO: Initialize to an appropriate value
            double      actual;

            target.PointSize = expected;
            actual           = target.PointSize;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }