| 4 | import BehaviouralDesignPatterns.StrategyDesignPattern.WithStrategyPattern.Strategy.SportsDriveStrategy; |
| 5 | |
| 6 | public class Sports extends Vehicle{ |
| 7 | Sports( ) { |
| 8 | super(new SportsDriveStrategy()); |
| 9 | } |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected