public void BilUdenBrobizz() { ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), false); Assert.AreEqual(410, bil.Pris()); }
public void BilKorrektType() { ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), false); Assert.AreEqual("Øresund Bil", bil.Køretøj()); }
public void BilMedBrobizz() { ØresundsBil bil = new ØresundsBil("AB12345", new DateTime(), true); Assert.AreEqual(161, bil.Pris()); }