public void ColorPickerConstructorTest2()
        {
            ShapefileColorBreak Break         = null; // TODO: Initialize to an appropriate value
            ShapefileColorBreak BreakExpected = null; // TODO: Initialize to an appropriate value
            ColorPicker         target        = new ColorPicker(ref Break);

            Assert.AreEqual(BreakExpected, Break);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void DrawBreakTest()
        {
            ColoringSchemeViewer_Accessor target = new ColoringSchemeViewer_Accessor(); // TODO: Initialize to an appropriate value
            ShapefileColorBreak           brk    = null;                                // TODO: Initialize to an appropriate value
            Rectangle rect     = new Rectangle();                                       // TODO: Initialize to an appropriate value
            Graphics  g        = null;                                                  // TODO: Initialize to an appropriate value
            bool      FillRect = false;                                                 // TODO: Initialize to an appropriate value

            target.DrawBreak(brk, rect, g, FillRect);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void LinkLabel2Test()
        {
            ShapefileColorBreak Break         = null;                       // TODO: Initialize to an appropriate value
            ShapefileColorBreak BreakExpected = null;                       // TODO: Initialize to an appropriate value
            ColorPicker         target        = new ColorPicker(ref Break); // TODO: Initialize to an appropriate value
            LinkLabel           expected      = null;                       // TODO: Initialize to an appropriate value
            LinkLabel           actual;

            target.LinkLabel2 = expected;
            actual            = target.LinkLabel2;
            Assert.AreEqual(BreakExpected, Break);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }