| 7 | import java.util.function.*; |
| 8 | |
| 9 | class PerformingDogA extends Dog { |
| 10 | public void speak() { System.out.println("Woof!"); } |
| 11 | public void sit() { System.out.println("Sitting"); } |
| 12 | public void reproduce() {} |
| 13 | } |
| 14 | |
| 15 | class RobotA { |
| 16 | public void speak() { System.out.println("Click!"); } |
nothing calls this directly
no outgoing calls
no test coverage detected