UserService实现. @author skywalker
| 6 | * @author skywalker |
| 7 | */ |
| 8 | public class UserServiceImpl implements UserService { |
| 9 | |
| 10 | @Override |
| 11 | public void printName() { |
| 12 | System.out.println("Name is XXX"); |
| 13 | printAge(); |
| 14 | } |
| 15 | |
| 16 | @Override |
| 17 | public void printAge() { |
| 18 | System.out.println("Age: " + 18); |
| 19 | } |
| 20 | |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected