public void Test_OresundsBronPrice()
        {
            OresundBron.Car c = new OresundBron.Car();

            int expected = 410;
            var result   = c.Price();


            Assert.AreEqual(expected, result);
        }
        public void Test_OresundsBronVehicleType()
        {
            OresundBron.Car c = new OresundBron.Car();

            string expected = "Oresund car";
            var    result   = c.VehicleType();


            Assert.AreEqual(expected, result);
        }
        public void Test_OresundsBronBrobizzAgreement()
        {
            OresundBron.Car c = new OresundBron.Car();

            double expected = 161;
            var    result   = c.BrobizzAgreement();


            Assert.AreEqual(expected, result);
        }