| 17 | } |
| 18 | |
| 19 | class Dog implements Pet { |
| 20 | @Override public void speak() { |
| 21 | System.out.println("woof!"); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | public class PetSpeak { |
| 26 | static void command(Pet p) { p.speak(); } |
nothing calls this directly
no outgoing calls
no test coverage detected