Example #1
0
        public void TestsPlane()
        {
            // Alowe to Create Plane
            var example = new Plane("3HF543", 250);

            // Alowe to change NumberOfSeats
            example.NumberOfSeats = 300;
            Assert.IsTrue(example.NumberOfSeats == 300);

            // Alowe to Get maxFuel
            Assert.IsTrue(example.ShowMaxFuelInfo() == 250);
        }