public void CreateAndShowLYRTest() { LegendEditorForm expected = null; // TODO: Initialize to an appropriate value LegendEditorForm actual; actual = LegendEditorForm.CreateAndShowLYR(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void LegendEditorFormConstructorTest() { int Handle = 0; // TODO: Initialize to an appropriate value bool IsLayer = false; // TODO: Initialize to an appropriate value AxMap axmap = null; // TODO: Initialize to an appropriate value LegendEditorForm target = new LegendEditorForm(Handle, IsLayer, axmap); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void LoadPropertiesTest() { int Handle = 0; // TODO: Initialize to an appropriate value bool IsLayer = false; // TODO: Initialize to an appropriate value AxMap axmap = null; // TODO: Initialize to an appropriate value LegendEditorForm target = new LegendEditorForm(Handle, IsLayer, axmap); // TODO: Initialize to an appropriate value int Handle1 = 0; // TODO: Initialize to an appropriate value bool IsLayer1 = false; // TODO: Initialize to an appropriate value target.LoadProperties(Handle1, IsLayer1); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void PropertyGrid1Test() { int Handle = 0; // TODO: Initialize to an appropriate value bool IsLayer = false; // TODO: Initialize to an appropriate value AxMap axmap = null; // TODO: Initialize to an appropriate value LegendEditorForm target = new LegendEditorForm(Handle, IsLayer, axmap); // TODO: Initialize to an appropriate value PropertyGrid expected = null; // TODO: Initialize to an appropriate value PropertyGrid actual; target.PropertyGrid1 = expected; actual = target.PropertyGrid1; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }