public void TransparentSelectionTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            target.TransparentSelection = expected;
            actual = target.TransparentSelection;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void StatusCoordsRoundingTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            int        expected = 0;                // TODO: Initialize to an appropriate value
            int        actual;

            target.StatusCoordsRounding = expected;
            actual = target.StatusCoordsRounding;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void BackgroundColorTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            Color      expected = new Color();      // TODO: Initialize to an appropriate value
            Color      actual;

            target.BackgroundColor = expected;
            actual = target.BackgroundColor;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void BackgroundColor_UseDefaultTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

            target.BackgroundColor_UseDefault = expected;
            actual = target.BackgroundColor_UseDefault;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void CategoryTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            string     expected = string.Empty;     // TODO: Initialize to an appropriate value
            string     actual;

            target.Category = expected;
            actual          = target.Category;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void SaveShapeSettingsTest()
        {
            PrjSetGrid target   = new PrjSetGrid(); // TODO: Initialize to an appropriate value
            bool       expected = false;            // TODO: Initialize to an appropriate value
            bool       actual;

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

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