public void ChangeOilTest()
        {
            Motorcycle testMotorcycle = new Motorcycle("testMake");

            testMotorcycle.AddMilage(3000);
            testMotorcycle.ChangeOil();
            Assert.AreEqual(4000, testMotorcycle.OilChangeMilage);
        }