()
| 23 | make: "Ducati", |
| 24 | model: "Panigale V4", |
| 25 | startEngine() { |
| 26 | console.log(`The ${this.make} ${this.model} engine roars to life!`); |
| 27 | }, |
| 28 | }; |
| 29 | motorcycle.startEngine.call(car); |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected