| 1 | package factoryMethod; |
| 2 | |
| 3 | public class SedanCarFactory implements CarFactory { |
| 4 | @Override |
| 5 | public Car buildCar(String model, String wheel, String engine) { |
| 6 | Car car = new SedanCar(model, wheel, engine); |
| 7 | return car; |
| 8 | } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected