| 11 | } |
| 12 | |
| 13 | class Cat implements Pet { |
| 14 | @Override public void speak() { |
| 15 | System.out.println("meow!"); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | class Dog implements Pet { |
| 20 | @Override public void speak() { |
nothing calls this directly
no outgoing calls
no test coverage detected