public void PolygonSFInfoConstructorTest() { int LayerHandle = 0; // TODO: Initialize to an appropriate value AxMap map = null; // TODO: Initialize to an appropriate value PolygonSFInfo target = new PolygonSFInfo(LayerHandle, map); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void DisposeTest() { int LayerHandle = 0; // TODO: Initialize to an appropriate value AxMap map = null; // TODO: Initialize to an appropriate value IDisposable target = new PolygonSFInfo(LayerHandle, map); // 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 AxMap map = null; // TODO: Initialize to an appropriate value PolygonSFInfo target = new PolygonSFInfo(LayerHandle, map); // 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 AxMap map = null; // TODO: Initialize to an appropriate value PolygonSFInfo target = new PolygonSFInfo(LayerHandle, map); // 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 MapTooltipFieldTest() { int LayerHandle = 0; // TODO: Initialize to an appropriate value AxMap map = null; // TODO: Initialize to an appropriate value PolygonSFInfo target = new PolygonSFInfo(LayerHandle, map); // 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."); }