public void ImportSchemeTest3() { Layer lyr = null; // TODO: Initialize to an appropriate value string Filename = string.Empty; // TODO: Initialize to an appropriate value object expected = null; // TODO: Initialize to an appropriate value object actual; actual = ColoringSchemeTools.ImportScheme(lyr, Filename); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void ImportSchemeTest2() { GridColorScheme sch = null; // TODO: Initialize to an appropriate value GridColorScheme schExpected = null; // TODO: Initialize to an appropriate value XmlElement e = null; // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; actual = ColoringSchemeTools.ImportScheme(ref sch, e); Assert.AreEqual(schExpected, sch); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void ImportSchemeTest() { GridColorScheme gsh = null; // TODO: Initialize to an appropriate value GridColorScheme gshExpected = null; // TODO: Initialize to an appropriate value string Filename = string.Empty; // TODO: Initialize to an appropriate value string GridName = string.Empty; // TODO: Initialize to an appropriate value string GridNameExpected = string.Empty; // TODO: Initialize to an appropriate value string GroupName = string.Empty; // TODO: Initialize to an appropriate value string GroupNameExpected = string.Empty; // TODO: Initialize to an appropriate value object expected = null; // TODO: Initialize to an appropriate value object actual; actual = ColoringSchemeTools.ImportScheme(ref gsh, Filename, ref GridName, ref GroupName); Assert.AreEqual(gshExpected, gsh); Assert.AreEqual(GridNameExpected, GridName); Assert.AreEqual(GroupNameExpected, GroupName); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }