public void MotorcyclePriceBrobizzDiscountTestOresundbron()
        {
            //Arrange
            var motorcycle = new Motorcycle("1234567", true, DateTime.Now);

            //Act
            double price = motorcycle.AfterBrobizzDiscount();

            //Assert
            Assert.AreEqual(73, price);
        }