Beispiel #1
0
        public void MCUdenBrobizz()
        {
            ØresundsMC motorcykel = new ØresundsMC("AB12345", new DateTime(), false);

            Assert.AreEqual(210, motorcykel.Pris());
        }
Beispiel #2
0
        public void MCKorrektType()
        {
            ØresundsMC motorcykel = new ØresundsMC("AB12345", new DateTime(), false);

            Assert.AreEqual("Øresund MC", motorcykel.Køretøj());
        }
Beispiel #3
0
        public void MCMedBrobizz()
        {
            ØresundsMC motorcykel = new ØresundsMC("AB12345", new DateTime(), true);

            Assert.AreEqual(73, motorcykel.Pris());
        }