| 4 | # |
| 5 | |
| 6 | class Vehicle(): |
| 7 | def __init__(self, bodystyle): |
| 8 | self.bodystyle = bodystyle |
| 9 | |
| 10 | def drive(self, speed): |
| 11 | self.mode = "driving" |
| 12 | self.speed = speed |
| 13 | |
| 14 | |
| 15 | class Car(Vehicle): |
nothing calls this directly
no outgoing calls
no test coverage detected