예제 #1
0
        public void BilUdenBrobizz()
        {
            ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), false);

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

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

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