public void TestFactoryMethod(ICarFactory carFactory)
 {
     Assert.That(carFactory.BuildCar(), Is.InstanceOf <ICar>());
 }