public void LineStippleTest() { Layer target = new Layer(); // TODO: Initialize to an appropriate value tkLineStipple expected = new tkLineStipple(); // TODO: Initialize to an appropriate value tkLineStipple actual; target.LineStipple = expected; actual = target.LineStipple; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void LineStyleTest() { 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 tkLineStipple expected = new tkLineStipple(); // TODO: Initialize to an appropriate value tkLineStipple actual; target.LineStyle = expected; actual = target.LineStyle; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }