public void TrackBlockGraphicConstructorTest()
        {
            TrackBlock        block  = null; // TODO: Initialize to an appropriate value
            double            scale  = 0F;   // TODO: Initialize to an appropriate value
            TrackBlockGraphic target = new TrackBlockGraphic(block, scale);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void BlinkTest()
        {
            TrackBlock        block  = null;                                // TODO: Initialize to an appropriate value
            double            scale  = 0F;                                  // TODO: Initialize to an appropriate value
            TrackBlockGraphic target = new TrackBlockGraphic(block, scale); // TODO: Initialize to an appropriate value

            target.Blink();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void YellowColorTest1()
        {
            TrackBlock        block    = null;                                // TODO: Initialize to an appropriate value
            double            scale    = 0F;                                  // TODO: Initialize to an appropriate value
            TrackBlockGraphic target   = new TrackBlockGraphic(block, scale); // TODO: Initialize to an appropriate value
            Color             expected = new Color();                         // TODO: Initialize to an appropriate value
            Color             actual;

            target.YellowColor = expected;
            actual             = target.YellowColor;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ShowDotTest1()
        {
            TrackBlock        block  = null;                                // TODO: Initialize to an appropriate value
            double            scale  = 0F;                                  // TODO: Initialize to an appropriate value
            TrackBlockGraphic target = new TrackBlockGraphic(block, scale); // TODO: Initialize to an appropriate value
            bool expected            = false;                               // TODO: Initialize to an appropriate value
            bool actual;

            target.ShowDot = expected;
            actual         = target.ShowDot;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void LineThicknessTest1()
        {
            TrackBlock        block  = null;                                // TODO: Initialize to an appropriate value
            double            scale  = 0F;                                  // TODO: Initialize to an appropriate value
            TrackBlockGraphic target = new TrackBlockGraphic(block, scale); // TODO: Initialize to an appropriate value
            int expected             = 0;                                   // TODO: Initialize to an appropriate value
            int actual;

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