public void ClearSelectedBreaksTest()
        {
            ColoringSchemeViewer target = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value

            target.ClearSelectedBreaks();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void SelectedBreaksTest()
        {
            ColoringSchemeViewer target = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value

            bool[] actual;
            actual = target.SelectedBreaks;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void InitializeControlTest()
        {
            ColoringSchemeViewer target         = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value
            GridColorScheme      ColoringScheme = null;                       // TODO: Initialize to an appropriate value

            target.InitializeControl(ColoringScheme);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void SetSelectedBreakTest()
        {
            ColoringSchemeViewer target = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value
            int  brk      = 0;                                        // TODO: Initialize to an appropriate value
            bool selected = false;                                    // TODO: Initialize to an appropriate value

            target.SetSelectedBreak(brk, selected);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void sBarTest()
        {
            ColoringSchemeViewer target   = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value
            VScrollBar           expected = null;                       // TODO: Initialize to an appropriate value
            VScrollBar           actual;

            target.sBar = expected;
            actual      = target.sBar;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void txtBoxTest()
        {
            ColoringSchemeViewer target = new ColoringSchemeViewer(); // TODO: Initialize to an appropriate value
            TextBox expected            = null;                       // TODO: Initialize to an appropriate value
            TextBox actual;

            target.txtBox = expected;
            actual        = target.txtBox;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ColoringSchemeViewerConstructorTest()
        {
            ColoringSchemeViewer target = new ColoringSchemeViewer();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }