public void TrainGraphicConstructorTest()
        {
            ITrain       train  = null; // TODO: Initialize to an appropriate value
            TrainGraphic target = new TrainGraphic(train);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void BlinkTest()
        {
            ITrain       train  = null;                    // TODO: Initialize to an appropriate value
            TrainGraphic target = new TrainGraphic(train); // TODO: Initialize to an appropriate value

            target.Blink();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void TrainTest1()
        {
            ITrain       train    = null;                    // TODO: Initialize to an appropriate value
            TrainGraphic target   = new TrainGraphic(train); // TODO: Initialize to an appropriate value
            ITrain       expected = null;                    // TODO: Initialize to an appropriate value
            ITrain       actual;

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

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