CTCUnitTests.TrainGraphicTest.TrainTest1 C# (CSharp) Method

TrainTest1() private method

private TrainTest1 ( ) : void
return void
        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.");
        }