public void ExportSchemeTest1()
        {
            ShapefileColorScheme Scheme  = null; // TODO: Initialize to an appropriate value
            XmlDocument          RootDoc = null; // TODO: Initialize to an appropriate value
            XmlElement           Parent  = null; // TODO: Initialize to an appropriate value
            bool expected = false;               // TODO: Initialize to an appropriate value
            bool actual;

            actual = ColoringSchemeTools_Accessor.ExportScheme(Scheme, RootDoc, Parent);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ImportSchemeTest1()
        {
            ShapefileColorScheme sch         = null; // TODO: Initialize to an appropriate value
            ShapefileColorScheme schExpected = null; // TODO: Initialize to an appropriate value
            Shapefile            sf          = null; // TODO: Initialize to an appropriate value
            Shapefile            sfExpected  = 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_Accessor.ImportScheme(ref sch, ref sf, e);
            Assert.AreEqual(schExpected, sch);
            Assert.AreEqual(sfExpected, sf);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }