public void PolylineSFInfoConstructorTest()
        {
            int            LayerHandle = 0; // TODO: Initialize to an appropriate value
            PolylineSFInfo target      = new PolylineSFInfo(LayerHandle);

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

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

            actual = target.BoundingBoxX;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void VertexSizeTest()
        {
            int            LayerHandle = 0;                               // TODO: Initialize to an appropriate value
            PolylineSFInfo target      = new PolylineSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            int            expected    = 0;                               // TODO: Initialize to an appropriate value
            int            actual;

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

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

            target.LabelsVisible = expected;
            actual = target.LabelsVisible;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void MapTooltipFieldTest()
        {
            int            LayerHandle = 0;                               // TODO: Initialize to an appropriate value
            PolylineSFInfo target      = new PolylineSFInfo(LayerHandle); // TODO: Initialize to an appropriate value
            string         expected    = string.Empty;                    // TODO: Initialize to an appropriate value
            string         actual;

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