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"); }
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."); }
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."); }
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."); }
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."); }
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."); }
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."); }
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."); }
public void ShapeConstructorTest1() { MapWindow.Interfaces.Shape target = new MapWindow.Shape(); Assert.Inconclusive("TODO: Implement code to verify target"); }
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."); }