(String model, String wheel, String engine)
| 6 | String engine; |
| 7 | |
| 8 | SedanCar(String model, String wheel, String engine) { |
| 9 | this.model = model; |
| 10 | this.wheel = wheel; |
| 11 | this.engine = engine; |
| 12 | } |
| 13 | |
| 14 | public String getModel() { |
| 15 | return model; |
nothing calls this directly
no outgoing calls
no test coverage detected