Ejemplo n.º 1
0
        public void BilUdenBrobizz()
        {
            ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), false);

            Assert.AreEqual(410, bil.Pris());
        }
Ejemplo n.º 2
0
        public void BilKorrektType()
        {
            ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), false);

            Assert.AreEqual("Øresund Bil", bil.Køretøj());
        }
Ejemplo n.º 3
0
        public void BilMedBrobizz()
        {
            ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), true);

            Assert.AreEqual(161, bil.Pris());
        }