public void KøretøjTypeBil()
        {
            //Arrange
            Bil testBil = new Bil("testBil", new DateTime(1, 1, 1));

            //Act
            string bil = testBil.KøretøjsType();

            //Assert
            Assert.AreEqual(bil, "Bil");
        }
        public void TestBilType()
        {
            //Arrange

            Bil TestBil = new Bil("test", DateTime.Now);

            //Act

            string Type = TestBil.KøretøjsType();

            //Assert
            Assert.AreEqual("Bil", Type);
        }