| 1 | class Human{ |
| 2 | //Overridden method |
| 3 | public void eat() |
| 4 | { |
| 5 | System.out.println("Human is eating"); |
| 6 | } |
| 7 | } |
| 8 | class Boy extends Human{ |
| 9 | //Overriding method |
| 10 | public void eat(){ |
nothing calls this directly
no outgoing calls
no test coverage detected