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